Click or drag to resize
ListTInsertRange Method

Namespace: System.Collections.Generic
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public void InsertRange(
	int index,
	IEnumerable<T> collection
)

Parameters

index
Type: SystemInt32
The zero-based index at which the new elements should be inserted.
collection
Type: System.Collections.GenericIEnumerableT
The collection whose elements should be inserted into the ListT. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.
Exceptions
ExceptionCondition
ArgumentNullExceptioncollection is null.
ArgumentOutOfRangeExceptionindex is less than 0.-or-index is greater than Count.
See Also