BigList<(Of <(<'T>)>)>..::..InsertRange Method (Int32, BigList<(Of <(<'T>)>)>)
Inserts a BigList of items at the given index in the BigList. All items at indexes
equal to or greater than index increase their indices
by the number of items inserted.
Namespace:
Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
Parameters
- index
- Type: Int32
The index to insert the collection at. After the insertion, the first item of the inserted collection is located at this index. The first item has index 0.
- list
- Type: Wintellect.PowerCollections..::..BigList<(Of <(<'T>)>)>
The BigList of items to insert at the given index.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | index is less than zero or greater than Count. |
ArgumentNullException | list is null. |