Home »
C# Tutorial
C# List<T>.InsertRange() Method with Example
C# List<T>.InsertRange() Method: In this tutorial, we will learn about the InsertRange() method of List collection with its usage, syntax, and an example using C# program.
By IncludeHelp Last updated : April 15, 2023
C# List<T>.InsertRange() Method
List<T>.InsertRange() method is used to insert a collection of elements of same type at specified index in the list.
Syntax
void List<T>.InsertRange(int index, IEnumerable<T> collection);
Parameter(s)
It accepts two parameters:
- index – where you want to insert the elements
- collection – a collection of the elements of type T
Return Value
It returns nothing – it's return 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);
Inserting elements (array) at specified indexes
int[] arr = { 100, 200, 300 };
a.InsertRange(3, arr);
Output:
10 20 30 100 200 300 40 50
C# program to insert collection of elements at specified index in the list using List<T>.InsertRange() 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);
//inserting elements (array) at specified indexes
int[] arr = {100,200,300};
a.InsertRange(3, arr);
//list after inserting elements
Console.WriteLine("list elements after inserting elements...");
printList(a);
//hit ENTER to exit
Console.ReadLine();
}
}
}
Output
list elements...
10 20 30 40 50
list elements after inserting elements...
10 20 30 100 200 300 40 50
Reference: List<T>.InsertRange(Int32, IEnumerable<T>) Method