Open In App

C# | ArrayList.InsertRange() Method

Last Updated : 11 Jul, 2025
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
ArrayList.InsertRange(Int32, ICollection) Method in C# is used to insert the elements from a collection into the ArrayList at a specified index. That is the inserted element belongs to a collection(i.e. queue etc). Syntax:
public virtual void InsertRange (int index, ICollection element);
Parameters:
  • index: It is the index, where the new elements to be inserted.
  • element: It is the ICollection whose elements are going to be inserted into the ArrayList at a specified index.
Note: The collection cannot be null, but it can contain elements that are null. Exceptions:
  • ArgumentNullException: If the element is null.
  • ArgumentOutOfRangeException: If the index is less than zero or index is greater than counter.
  • NotSupportedException: If the ArrayList is read-only or the ArrayList has a fixed size.
Example 1:
Output:
The ArrayList initially has:
   A   D   E   F
The collection initially has:
   B   C
After insert the collection in the ArrList:
   A   B   C   D   E   F
Example 2:+
Output:
The ArrayList initially has:
 A D E G
The collection initially has:
 B C
After insert the collection in the ArrList:
 A B C D E G
After inserting F before G:
 A B C D E F G
Reference:

Similar Reads