Tagged Questions
3
votes
5answers
403 views
Should I Overload == Operator?
How does the == operator really function in C#? If it used to compare objects of class A, will it try to match all of A's properties, or will it look for pointers to the same memory location (or maybe ...