CJCoding With Joseph

Generic Method Constrained to an Interface

Complete the generic method MathUtil.Max<T> with the constraint where T : IComparable<T>. It returns the larger of a and b using CompareTo. Do NOT write a Main method.

For Max(3, 9) then Max("apple", "banana") the program prints:
9
banana

Expected Output:

9
banana
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.