[]
Inserts the elements of a collection into the StructList<T> at the specified index.
public void InsertRange(int index, IEnumerable<T> collection)
Public Sub InsertRange(index As Integer, collection As IEnumerable(Of T))
Type | Name | Description |
---|---|---|
int | index | The zero-based index at which the new elements should be inserted. |
IEnumerable<T> | collection | The collection whose elements should be inserted into the StructList<T>. |