VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-removing-the-specified-element-from-the-list/

⇱ C# | Removing the specified element from the List - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# | Removing the specified element from the List

Last Updated : 11 Jul, 2025
List.Remove(T) Method is used to remove the first occurrence of a specific object from the List. Properties of List:
  • It is different from the arrays. A list can be resized dynamically but arrays cannot.
  • List class can accept null as a valid value for reference types and it also allows duplicate elements.
  • If the Count becomes equals to Capacity then the capacity of the List increases automatically by reallocating the internal array. The existing elements will be copied to the new array before the addition of the new element.
Syntax:
public bool Remove (T item);
Parameter:
item: Specified object which is to be remove from the List.
Return Type: This method returns True if item is successfully removed. Otherwise it returns False. Note: This method returns False if item was not found in the List. Below programs illustrate how to remove the specified element from the List: Example 1: Output:
Before Removing
1
2
3
4
After Removing
1
3
4
Example 2:
Comment

Explore