Or it's advisable to do that? Why?
|
|
See the guidelines for overriding Equals() and operator==. Quote:
Basically: If you want == and != to behave like |
||||
|
|
|
in A.Equals(B) A cannot be null in A == B either can be null |
||
|
|
|
|
It is not necessary, nobody will kill you if you do not do that. However, do notice that it is often more natural to write (A == B) than A.Equals(B). If you provide both methods, it will be easier for consumers of your code. |
||
|
|
|
|
It would be advisable, as it would be unexpected if:
...behaved differently to:
|
||
|
|
|
|
See Guidelines for Implementing Equals and the Equality Operator (==) For Value Types (structs) "Implement == any time you override the Equals method" For Reference Types (classes), "Most reference types, even those that implement the Equals method, should not override ==." The exception is for immutable classes and those with value-like semantics. |
||
|
|
|
|
It is not necessary, but a smart thing to do. If you are creating a framework and another developer other than you are going to use the object you should overridet he == and !=. That way when a developer may use it they at least have the right logic to compare the 2 objects rather than just are the same in memory. I would ensure that your == & != do call your equals method. |
||
|
|
|
|
If you are overriding the equals method and still want to be able to check for equality (or inequality) then you should probably override the == and != methods as well. |
||
|
|
