Remove List<T> Items
The Remove() method removes the first occurrence of a specific object from a List. The Remove method takes an item as its parameter. The following code snippet removes an item from a List.
// Create a list of strings
List<string> AuthorList = new List<string>();
AuthorList.Add("Mahesh Chand");
AuthorList.Add("Praveen Kumar");
AuthorList.Add("Raj Kumar");
AuthorList.Add("Nipun Tomar");
AuthorList.Add("Dinesh Beniwal");
AuthorList.Remove("Mahesh Chand");
The RemoveAt method removes an item at the specified zero-based index.
The following code snippet removes an item at the 2nd position in the List.
AuthorList.RemoveAt(2);
The RemoveRange() method removes a number of items based on the specified starting index and the number of items. The RemoveRange method takes the first parameter as the starting position and the second parameter as the number of items to be removed from the List.
The following code snippet removes two items starting at the 3rd position.
AuthorList.RemoveRange(3, 2);
Next > List Tutorial In C#