Possible Duplicate:
Is it necessary to override == and != operators when overriding the Equals method? (.NET)
C# compiler prompts me that I should override equals if overriding ==, I just want to know why?
C# compiler prompts me that I should override equals if overriding ==, I just want to know why? |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
If you are re-defining equality via |
|||
|
|
|
Because otherwise you'll have two semantically similar operations potentially yielding different results, meaning a lot of confusion. I'm not sure if the compiler stops you or if it is just a warning, but in either case it's usually good to make sure they behave the same. There is something like this with |
|||
|
|
Because otherwise you will get different results depending on how you do the comparison. Doing |
|||||||||||
|