remove from list based on value c# code example
Example 1: remove items from list c# condition
prods.RemoveAll(s => s.ID == 1)
Example 2: c# remove item from list
list.Remove("Example String"); // Remove by value
list.RemoveAt(3); // Remove at index
list.RemoveRange(6, 3); // Remove range (removes 3 items starting at 6th position in this example)