I am looking for a way to quickly remove items from a C# List. The documentation states that the List.Remove() and List.RemoveAt()<
List
List.Remove()
List.RemoveAt()<
Or you could do this:
List listA; List listB;
...
List resultingList = listA.Except(listB);