Method InsertAll
InsertAll(Int32, Collections.Generic.IEnumerable<T>)
Insert into this list all items from an enumerable collection starting at a particular index.
Declaration
void InsertAll(int index, Collections.Generic.IEnumerable<T> items)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | Index to start inserting at |
System.Collections.Generic.IEnumerable<T> | items | Items to insert |
Exceptions
Type | Condition |
---|---|
DuplicateNotAllowedException | if the list has and one of the items to insert is
already in the list. |