vote up 2 vote down star
List<tinyClass> ids = new List<tinyClass();
ids.Add(new tinyClass(1, 2));

bool b = ids.IndexOf(new tinyClass(1, 2)) >= 0; //true or false?

If it compares by value, it should return true; if by reference, it will return false.
If it compares by reference, and I make tinyClass a struct - will that make a difference?

flag

63% accept rate
Wouldn't it have been faster just to check the manual or lookup via google which will return the MSDN link? – Kevin Gale Oct 6 '08 at 20:20
Or to run the code sample and check the result ;) – OregonGhost Oct 6 '08 at 20:22

5 Answers

vote up 12 vote down check

From MSDN:

This method determines equality using the default equality comparer EqualityComparer<T>.Default for T, the type of values in the list.

The Default property checks whether type T implements the System.IEquatable<T> generic interface and if so returns an EqualityComparer<T> that uses that implementation. Otherwise it returns an EqualityComparer<T> that uses the overrides of Object.Equals and Object.GetHashCode provided by T.

Seems like it uses the Equals method, unless the stored class implements the IEquatable<T> interface.

link|flag
vote up 0 vote down

it also, may be related to which of Class or Struct instance is kept in list, because of Structs equal implementation is based on values equality

link|flag
vote up 0 vote down

Be sure to implement .Equals(..) for your struct, as the default implementation may use reflection to compare each field, which is very expensive.

Read more at: http://blogs.microsoft.co.il/blogs/sasha/archive/2007/08.aspx

link|flag
vote up 0 vote down

For a class, with the default implementation of Equals - it will compare by reference.

If you change it to a tinyStruct, it will compare it by value.

link|flag
vote up 0 vote down

It depends on the object's implementation of .Equals(..). By default for an object, the references are compared. If you did change it to a struct, then I believe it would evaluate to true based on the equality of the private members, but it would still be more programmically sound to implement IEquatable.

link|flag

Your Answer

Get an OpenID
or

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