vote up 3 vote down star
1

If i have a complex object, what is the best practice pattern to write code to compare 2 instances to see if they are the same

flag

4 Answers

vote up 7 vote down check

Implement the IEquatable interface. This defines a generalized method that a value type or class implements to create a type-specific method for determining equality of instances. Don't forget to override Equals(object) as well. More information here:

http://msdn.microsoft.com/en-us/library/ms131187.aspx

link|flag
how is this different from IComparable – oo Jan 4 '09 at 16:51
IEquatable will only tell you if they are the same or not. IComparable will give you a relative ordering. For objects that are not ordered, but are equatable (images, for example) you can't use IComparable. – tvanfosson Jan 4 '09 at 16:55
is .Equals() the same as == ?? – oo Jan 4 '09 at 17:11
No it doesn't. This does a simple reference comparison. More info here: msdn.microsoft.com/en-us/library/… – Ray Booysen Jan 4 '09 at 17:31
vote up 2 vote down

I think the answer is highly problem dependent. For example, you may want to consider objects equal only if all of their properties are equivalent. This would perhaps be the case where each object doesn't have a uniquely identifying property. If there is such a property (or properties), say an ID or ID and Version, that uniquely identifies each object of the type, then you may only want to compare based on that property (or properties).

The base pattern, however, ought to be something like:

if their references are equal (includes both null)
   return true
else if one object is null
   return false
else
   return value based on relevant properties

Note that if you override the Equals operator, you'll also want to override GetHashCode() so that the hash codes for equivalent objects are the same. This will ensure that data structures that use the hash code for determining duplicate keys work properly when the object is used as a key.

link|flag
vote up 0 vote down

Since you mentioned a Complex Object, make sure that all composite Objects in the Complex Object implement equals(Object) as mentioned by tvanfosson. Finally implement equals in the Complex object taking advantage of the equals of all composite Objects

link|flag
vote up 0 vote down

I have created a class to perform a deep compare of .NET Objects. See:

http://comparenetobjects.codeplex.com/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.