ISupportsRangeListTInsertRange Method

Inserts a collection into this ISupportsRangeListT at the specified index.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.5.0
C#
void InsertRange(
	int index,
	IEnumerable<T> collection
)

Parameters

index  Int32
The zero-based index at which collection items should be inserted.
collection  IEnumerableT
The collection to insert into the list.

Exceptions

ArgumentOutOfRangeExceptionindex is not a valid index in the CircularListT.
ArgumentNullExceptioncollection must not be .

See Also