How can I find a specific element in a List<T>?

628,528

Solution 1

Use a lambda expression

MyClass result = list.Find(x => x.GetId() == "xy");

Note: C# has a built-in syntax for properties. Instead of writing getter and setter as ordinary methods (as you might be used to from Java), write

private string _id;
public string Id
{
    get
    {
        return _id;
    }
    set
    {
        _id = value;
    }
}

value is a contextual keyword known only in the set accessor. It represents the value assigned to the property.

Since this pattern is often used, C# provides auto-implemented properties. They are a short version of the code above; however, the backing variable is hidden and not accessible (it is accessible from within the class in VB, however).

public string Id { get; set; }

You can simply use properties as if you were accessing a field:

var obj = new MyClass();
obj.Id = "xy";       // Calls the setter with "xy" assigned to the value parameter.
string id = obj.Id;  // Calls the getter.

Using properties, you would search for items in the list like this

MyClass result = list.Find(x => x.Id == "xy"); 

You can also use auto-implemented properties if you need a read-only property:

public string Id { get; private set; }

This enables you to set the Id within the class but not from outside. If you need to set it in derived classes as well you can also protect the setter

public string Id { get; protected set; }

And finally, you can declare properties as virtual and override them in deriving classes, allowing you to provide different implementations for getters and setters; just as for ordinary virtual methods.


Since C# 6.0 (Visual Studio 2015, Roslyn) you can write getter-only auto-properties with an inline initializer

public string Id { get; } = "A07"; // Evaluated once when object is initialized.

You can also initialize getter-only properties within the constructor instead. Getter-only auto-properties are true read-only properties, unlike auto-implemented properties with a private setter.

This works also with read-write auto-properties:

public string Id { get; set; } = "A07";

Beginning with C# 6.0 you can also write properties as expression-bodied members

public DateTime Yesterday => DateTime.Date.AddDays(-1); // Evaluated at each call.
// Instead of
public DateTime Yesterday { get { return DateTime.Date.AddDays(-1); } }

See: .NET Compiler Platform ("Roslyn")
         New Language Features in C# 6

Starting with C# 7.0, both, getter and setter, can be written with expression bodies:

public string Name
{
    get => _name;                                // getter
    set => _name = value;                        // setter
}

Note that in this case the setter must be an expression. It cannot be a statement. The example above works, because in C# an assignment can be used as an expression or as a statement. The value of an assignment expression is the assigned value where the assignment itself is a side effect. This allows you to assign a value to more than one variable at once: x = y = z = 0 is equivalent to x = (y = (z = 0)) and has the same effect as the statements x = 0; y = 0; z = 0;.

Since C# 9.0 you can use read-only (or better initialize-once) properties that you can initialize in an object initializer. This is currently not possible with getter-only properties.

public string Name { get; init; }

var c = new C { Name = "c-sharp" };

A feature is discussed for a future version of C#: The field keyword allowing the access to the automatically created backing field.

// Removes time part in setter
public DateTime HiredDate { get; init => field = value.Date(); }

Solution 2

var list = new List<MyClass>();
var item = list.Find( x => x.GetId() == "TARGET_ID" );

or if there is only one and you want to enforce that something like SingleOrDefault may be what you want

var item = list.SingleOrDefault( x => x.GetId() == "TARGET" );

if ( item == null )
    throw new Exception();

Solution 3

Try:

 list.Find(item => item.id==myid);

Solution 4

Or if you do not prefer to use LINQ you can do it the old-school way:

List<MyClass> list = new List<MyClass>();
foreach (MyClass element in list)
{
    if (element.GetId() == "heres_where_you_put_what_you_are_looking_for")
    {

        break; // If you only want to find the first instance a break here would be best for your application
    }
}

Solution 5

You can also use LINQ extensions:

string id = "hello";
MyClass result = list.Where(m => m.GetId() == id).First();
Share:
628,528
Robert Strauch
Author by

Robert Strauch

Updated on July 08, 2022

Comments

  • Robert Strauch
    Robert Strauch almost 2 years

    My application uses a list like this:

    List<MyClass> list = new List<MyClass>();

    Using the Add method, another instance of MyClass is added to the list.

    MyClass provides, among others, the following methods:

    public void SetId(String Id);
    public String GetId();
    

    How can I find a specific instance of MyClass by means of using the GetId method? I know there is the Find method, but I don't know if this would work here?!

  • Marcel Gosselin
    Marcel Gosselin about 12 years
    or the other overload of First: MyClass result = list.First(m => m.GetId() == id);
  • Mr. Blond
    Mr. Blond over 9 years
    Great answer, thanks. For db operation it would look something like this: IQueryable<T> result = db.Set<T>().Find(//just id here//).ToList(); It would already know that you are looking for primary key. Just for info.
  • Joel Trauger
    Joel Trauger over 7 years
    I know this is an old answer, but I'd separate the get and set into different methods so that the value is not accidentally set during a comparison.
  • Olivier Jacot-Descombes
    Olivier Jacot-Descombes over 7 years
    @JoelTrauger: A comparison reads the property and therefore only calls the getter.
  • Joel Trauger
    Joel Trauger over 7 years
    This is true, but an accidental assignment will call the setter and modify the property. See return object.property = value vs return object.property == value
  • Olivier Jacot-Descombes
    Olivier Jacot-Descombes over 7 years
    An accidental call of a separate set method will modify the property as well. I don't see how separate get set methods can improve safety.
  • Robert Columbia
    Robert Columbia almost 6 years
    While this code may answer the question, it is better to explain how to solve the problem and provide the code as an example or reference. Code-only answers can be confusing and lack context.
  • Code Name Jack
    Code Name Jack almost 5 years
    Why will you use singleOrDefault if you want to throw exception, Use Single()