Click or drag to resize

ModelCollectionTInsertRange Method

Inserts the elements of the specified collection at the specified position.

Namespace:  Dynamicweb.Analytics.Model
Assembly:  Dynamicweb.Analytics (in Dynamicweb.Analytics.dll) Version: 2.1.4
Syntax
public void InsertRange(
	int index,
	IEnumerable<T> collection
)

Parameters

index
Type: SystemInt32
0-based index at which insert starts.
collection
Type: System.Collections.GenericIEnumerableT
Elements to insert.
Exceptions
ExceptionCondition
ArgumentNullExceptioncollection is null.
ArgumentOutOfRangeExceptionindex is less than zero or index is equal to or greater than Count.
See Also