[]
Inserts the elements of an array into the StructList<T> at the specified index.
public void InsertArray(int index, T[] array, int arrayIndex, int count)
Public Sub InsertArray(index As Integer, array As T(), arrayIndex As Integer, count As Integer)
Type | Name | Description |
---|---|---|
int | index | The zero-based index at which the new elements should be inserted. |
T[] | array | The array whose elements should be inserted into the StructList<T>. |
int | arrayIndex | The zero-based index of the first element in the |
int | count | The number of elements to insert. |