I have read the following statement regarding to the comparison of C# value types in C# in Depth, Second Edition several times.
page 77,
When a type parameter is unconstrained (no constraints are applied to it), you can use == and != operators, but only to compare a value of that type with null. You can’t compare two values of type T with each other.
...
When a type parameter is constrained to be a value type, == and != can’t be used with it at all.
If I understand (I don't think so) it correctly, it basically tells me that you cannot use == or != to compare two value types. Why why why?
It will be better if a simple example can be given for this case. Can someone give me a little idea what the above paragraph tries to convey?
Object.Equalswill actually call the Equals implementation of the Object (even if it's a boxed value type), so it's a valid way to compare even value types. It also handles comparison of null with value types.Object.ReferenceEqualsexplicitly forces the check to be for reference equality, which can be helpful in cases where a reference type overrides the equality operator, but has a bug for the null comparison case (I've encountered this before with a third-party API.) – Dan Bryant Jun 7 '11 at 16:06