Click or drag to resize
DigitalRuneNotifyingCollectionTInsertRange Method

Namespace: DigitalRune.Collections
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
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 NotifyingCollectionT. The collection itself cannot be , but it can contain elements that are , if type T is a reference type and AllowNull is set to .
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than 0 or greater than Count.
ArgumentNullExceptioncollection is .
Remarks
See Also