CJCoding With Joseph

Sort Objects With IComparable

The Box class stores a Volume and implements IComparable<Box>. Complete CompareTo so that List<Box>.Sort() orders boxes from smallest to largest volume. The tester sorts three boxes and prints each volume on its own line. Do NOT write a Main method.

For volumes 30, 10, 20 the program prints:
10
20
30

Expected Output:

10
20
30
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.