What scenarios would you consider operator overloading in .net?
|
1
|
|
|
|
|
|
The golden rule is not to overload operators if the meaning isn't entirely obvious. For example, I think it would be pretty odd to have a + operator on In my experience it's pretty rare to overload anything other than == and !=. |
||||||||||||||||||||
|
|
|
I did request to close this, but perhaps it can remain open (I tried to change my mind but apparently you can't revoke a close request :P) I will answer personally: never. I never think it's a good idea to implement operator overloading. There is only one exception: If I'm writing some sort of collection (it doesn't happen very often) and I want to implement the indexers In my personal opinion, I do not think it is ever appropriate to be overriding |
||||||||||||||||||||
|
|
|
I would consider using operator overloading for arithmetic operations on types that represent a logical value. For instance, there have been occasions when I wished that |
||
|
|
|
|
I consider overriding operators i this cases:
|
||
|
|
|
|
I think the Framework design guidelines provide some decent advice:
|
||||
|
