CJCoding With Joseph

Custom Sort Order With IComparer

Write a DescendingComparer class that implements IComparer<int> so its Compare method orders numbers from largest to smallest. The tester passes it to List<int>.Sort and prints the result joined by commas. Do NOT write a Main method.

For 3, 1, 2 the program prints:
3,2,1

Expected Output:

3,2,1
Topics:
Interfaces
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.