VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-removing-a-range-of-elements-from-the-list/

⇱ C# | Removing a range of elements from the List - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# | Removing a range of elements from the List

Last Updated : 11 Jul, 2025

List<T>.RemoveRange(Int32, Int32) Method is used to remove a range of elements from the List<T>. 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 void RemoveRange (int index, int count);

Parameters:

index: It is the zero-based starting index of the range of elements which is to be removed. count: It is the number of the elements which is to be removed.

Exceptions:

  • ArgumentOutOfRangeException: If the index is less than zero or Count is less than zero.
  • ArgumentException: If the index and Count do not denote a valid range of elements in the List<T>.

Below programs illustrate the use of List<T>.RemoveRange(Int32, Int32) Method: Example 1: 

Output:

Elements in List:

Geeks
For
Geeks
GFG
C#
Tutorials
GeeksforGeeks

After Removing of elements:

Geeks
For
Geeks
C#
Tutorials
GeeksforGeeks

Time Complexity: O(n)

Auxiliary Space: O(n)

Example 2: 

Output:

Elements in List:

1
2
3
4
5
6
7

After Removing of elements:

1
2
3
6
7

Time complexity: O(n) since using a loop

Auxiliary Space: O(n) where n is size of the list

Reference:

Comment

Explore