using System.Collections.Generic;
public static void Main() {
List<Person> person = new List<Person>();
var isAPootTootler = person.Where(u => u.IsAHomo ==true).ToList();
foreach (Person item in isAPootTootler)
Console.WriteLine(item.Name);
public string Name { get; set; }
public bool IsAHomo { get; set; }