I see that I explicitly implement Equals and GetHashCode for my objects.
But I wonder if it makes sense to explicitly implement the == and! =, for example:
public static bool operator ==(Salutation left, Salutation right) { return Equals(left, right); }
Does C # allow you to use the Equals method when calling ==?
c #
Tigraine
source share