Say I have:
IList people = new List();
And the person object has properties like FirstName, LastName, and Gende
IList firstNames = (from person in people select person.FirstName).ToList();
Or
IList firstNames = people.Select(person => person.FirstName).ToList();