both the interfaces seem to compare objects for equality, so what's the major differences between them?
|
For example, |
|||||
|
|
In addition to Greg D's answer: You might implement IComparable without implementing IEquatable for a class where a partial ordering makes sense, and where very definitely you wish the consumer to draw the inference that just because CompareTo() returns zero, this does not imply that the objects are equal (for anything other than sorting purposes). |
|||||||||||||||
|
|
As stated on the MSDN Page for IEquatable:
|
|||
|
|