vote up 2 vote down star
1

I have a list which contains a collection of objects.

How can I search for an item in this list where object.property = myValue

Thanks

flag

5 Answers

vote up 5 vote down check

What is wrong with List.Find ??

I think we need more information on what you've done, and why it fails, before we can provide truly helpful answers.

link|flag
You're right, found List.Find, works like a charm. – JL Sep 28 at 7:15
If you are using .NET 3.0 or later, you should favor the LINQ way because LINQ works on any IEnumerable and IEnumerable<T>. The Find-Method is specific for List<T> and cannot help you once you have to deal with different collections. – Oliver Hanappi Sep 28 at 8:26
vote up 0 vote down

For .NET 2.0:

list.Find(delegate(Item i) { return i.Property == someValue; });
link|flag
vote up 1 vote down
var myItem = myList.Find(item => item.property == "something");
link|flag
vote up 16 vote down

You have a few options:

  1. Using Enumerable.Where:

    list.Where(i => i.Property == value).FirstOrDefault();       // C# 3.0+
    
  2. Using List.Find:

    list.Find(i => i.Property == value);                         // C# 3.0+
    list.Find(delegate(Item i) { return i.Property == value; }); // C# 2.0+
    

Both of these options return default(T) (null for reference types) if no match is found.

As mentioned in the comments below, you should use the appropriate form of comparison for your scenario:

  • == for simple value types or where use of operator overloads are desired
  • object.Equals(a,b) for most scenarios where the type is unknown or comparison has potentially been overridden
  • string.Equals(a,b,StringComparison) for comparing strings
  • object.ReferenceEquals(a,b) for identity comparisons, which are usually the fastest
link|flag
Forgot to mention I'm using .net v2 – JL Sep 28 at 7:10
1  
4 upvotes and still using the assignment operator to compare values. Hmm.... – Peter van der Heijden Sep 28 at 7:14
1  
@Peter -- haha, nice one. It's early here and the compiler in my brain is off duty :) – Drew Noakes Sep 28 at 7:22
You should compare using Equals unless you know == is valid for the particular type you're comparing. == will most often compare reference identity, which has a good chance of not having desirable semantics. – Joren Sep 28 at 8:14
I generally use object.Equals(a,b) when I don't know the type (most times you're looking in a list, you do know the type) as this takes type-specific comparison into account and deals neatly with nulls, though the exception to this rule is for string comparisons, for which the programmer should indicate whether it's an ordinal or culture-sensitive comparison (via string.Equals(a,b,StringComparison). – Drew Noakes Sep 28 at 8:24
show 2 more comments
vote up 0 vote down
item = objects.Find(obj => obj.property==myValue);
link|flag

Your Answer

Get an OpenID
or

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