If i have
IEnumberable<Car> list
and i want to remove an item from this list based on a property of the car
i want something like:
list.RemoveWhere(r=>r.Year > 2000)
does something like this exist ?
i am doing this over and over so i want to avoid copying the list each time to just remove one item