Inconsistent equality
Happypig375 opened this issue · 2 comments
https://github.com/Quansight-Labs/numpy.net/blob/master/src/NumpyDotNet/NumpyDotNet/ndarray.cs#L518-L560
why are some types only available in == and others in Equals?
If I remember correctly, the problem was that in some cases, .NET uses == to try and do object reference comparison which is part of the language. If I tried to override that then I also have to override != and it was causing problems in other areas.
Based on the items you selected, I am not sure which specific items you are having a problem with. If you can be more specific about which data type you think should work with == let me know and I will try to investigate it.
It has been a while since I solved this problem so I don't remember all of the details but I came to the conclusion that == wasn't going to work for all the datatypes. It is one of the differences between C# and Python that we have to live with.
hmm ok thanks