Linq – How to use LINQ to obtain a unique list of properties from a list of objects

c#-3.0classlinqlistproperties

I'm trying to use LINQ to return a list of ids given a list of objects where the id is a property. I'd like to be able to do this without looping through each object and pulling out the unique ids that I find.

I have a list of objects of type MyClass and one of the properties of this class is an ID.

public class MyClass
{
  public int ID { get; set; }
}

I want to write a LINQ query to return me a list of those Ids.

How do I do that, given an IList<MyClass> such that it returns an IEnumerable<int> of the ids?

I'm sure it must be possible to do it in one or two lines using LINQ rather than looping through each item in the MyClass list and adding the unique values into a list.

Best Answer

IEnumerable<int> ids = list.Select(x=>x.ID).Distinct();