[]
public void InsertRange(int startingIndex, IEnumerable<T?> newItems)
Type | Name | Description |
---|---|---|
int | startingIndex | |
IEnumerable<T> | newItems |
Inserts the specified count
of items (nulls) at the specified startingIndex
.
public void InsertRange(int startingIndex, int count)
Type | Name | Description |
---|---|---|
int | startingIndex | The index where the items are inserted. |
int | count | The number of nulls that will be inserted. |