[]
Inserts the specified newItems at the startingIndex.
public void InsertRange(int startingIndex, IEnumerable<double> newItems)
| Type | Name | Description |
|---|---|---|
| int | startingIndex | The index where the items will be inserted. |
| IEnumerable<double> | 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)
| Type | Name | Description |
|---|---|---|
| int | startingIndex | The index where the items will be inserted. |
| int | count | The number of items to be inserted. |