CJCoding With Joseph

Value Equality With IEquatable

The Point class implements IEquatable<Point>. Complete Equals(Point other) so two points are equal when their X and Y match. Do NOT write a Main method.

Comparing (1,2) with (1,2) then (1,2) with (3,4) the program prints:
True
False

Expected Output:

True
False
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.