As the title says: do i need to override the == operator? how about the .Equals() method? Anything i'm missing?
| ||||
|
feedback
|
|
An example from msdn
| |||
|
feedback
|
|
You should also implement IEquatable<T>. Here is an excerpt from Framework Design Guidelines:
| |||
|
feedback
|
|
Yes,
| |||
|
feedback
|
|
The basic difference among the two is that the | ||||
|
feedback
|