Using LINQ to remove elements from a List Technology Community › Category: LINQ › Using LINQ to remove elements from a List 0 Vote Up Vote Down VietMX Staff asked 4 years ago Problem Given that authorsList is of type List<Author>, how can I delete the Author elements that are equalling to Bob? Consider: authorsList.RemoveAll(x => x.FirstName == "Bob");