C# List.RemoveRange() technique: Here, we will find out about the RemoveRange() strategy for List with example.
C# List.RemoveRange() Method
List.RemoveRange() strategy is utilized to expel a scope of the components from the rundown.
Syntax:
    void List<T>.RemoveRange(int index, int count);Parameter: It acknowledges two parameters 1) list – beginning position and 2) check – all out number of components to be expelled from the list.
Return value: It returns nothing – it’s profits type is void
Example:
    int list declaration:
    List<int> a = new List<int>();
    adding elements:
    a.Add(10);
    a.Add(20);
    a.Add(30);
    a.Add(40);
    a.Add(50);
    
    removing elements:
    ////will remove 2 elements from index 0 
    a.RemoveRange(0, 2);
    
    Output:
    30 40 50C# Example to expel things from the rundown utilizing List.RemoveRange() Method
using System;
using System.Text;
using System.Collections.Generic;
namespace Test
{
    class Program
    {
        static void printList(List<int> lst)
        {
            //printing elements
            foreach (int item in lst)
            {
                Console.Write(item + " ");
            }
            Console.WriteLine();
        }
        static void Main(string[] args)
        {
            //integer list
            List<int> a = new List<int>();
            //adding elements
            a.Add(10);
            a.Add(20);
            a.Add(30);
            a.Add(40);
            a.Add(50);
            //print the list
            Console.WriteLine("list elements...");
            printList(a);
            //remove elements
            //will remove 2 elements from index 0 
            a.RemoveRange(0, 2);
            //list after removing the elements
            Console.WriteLine("list elements after removing elements...");
            printList(a);
            //hit ENTER to exit
            Console.ReadLine();
        }
    }
}Output
list elements...
10 20 30 40 50
list elements after removing elements...
30 40 50 
 