Click or drag to resize
Wizard .NET Library

EventedListTInsertRange Method

Namespace:  System.Collections.Generic
Assembly:  AeroWizard (in AeroWizard.dll) Version: 2.2.3
Syntax
public void InsertRange(
	int index,
	IEnumerable<T> collection
)
Request Example View Source

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 EventedListT. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.
See Also