Let\'s say we have a collection of Person objects
class Person { public string PersonName {get;set;} public string PersonAddress {get;set;} }
Can't you just do
personList.Where(x => x.PersonName == "YourNameHere").ToList() ?