[]
Inserts the specified newItems at the startingIndex.
public void InsertRange(int startingIndex, IEnumerable<T> newItems)
Public Sub InsertRange(startingIndex As Integer, newItems As IEnumerable(Of T))
| Type | Name | Description |
|---|---|---|
| int | startingIndex | The index where the items will be inserted. |
| IEnumerable<T> | newItems | The values to be inserted. |
Inserts the specified count of default length items at the specified startingIndex.
public void InsertRange(int startingIndex, int count)
Public Sub InsertRange(startingIndex As Integer, count As Integer)
| Type | Name | Description |
|---|---|---|
| int | startingIndex | The index where the items will be inserted. |
| int | count | The number of items to be inserted. |