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