How to remove an Item from a C# List

Remove Items
 
The Remove method removes the first occurrence of a specific object from a List. The Remove method takes an item as its parameter.
We can use the RemoveAt method to remove an item at the specified position within a List. 
 
The following code snippet removes an item from a List.
  1. // Create a list of strings  
  2. List<string> AuthorList = new List<string>();  
  3. AuthorList.Add("Mahesh Chand");  
  4. AuthorList.Add("Praveen Kumar");  
  5. AuthorList.Add("Raj Kumar");  
  6. AuthorList.Add("Nipun Tomar");  
  7. AuthorList.Add("Dinesh Beniwal");  
  8.   
  9. AuthorList.Remove("Mahesh Chand");  
The RemoveAt method removes an item at the specified zero based index. The following code snippet removes an item at 2nd position in the List.  
  1. AuthorList.RemoveAt(2);  
The RemoveRange method removes a number of items based on the specified starting index and number of items. The RemoveRange method takes first parameter as the starting position and second parameter as the number of the items to be removed from the List. The following code snippet removes 2 items starting at the 3rd position.
  1. AuthorList.RemoveRange(3, 2);  


Similar Articles
Mindcracker
Founded in 2003, Mindcracker is the authority in custom software development and innovation. We put best practices into action. We deliver solutions based on consumer and industry analysis.