PreviousNext

Comparing Objects by Value. Part 1. Beginning

by bill-s, 2018-02-16T10:33:10.000Z

It is a common fact that the .NET object model, as well as other software program platforms, allow comparing objects by reference and by value. By default, two objects are equal if the corresponding object variables have the same reference. Otherwise, they are different. However, in some cases, you may need to state that two objects belonging to the same class are equal if their content match in a certain way.

Read More