Method Insert
Insert(int, in T)
Inserts a single element at an index. Increments the length by 1.
Declaration
public void Insert(int index, in T item)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The index at which to insert the element. |
| T | item | The element to insert. |
Exceptions
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | Thrown if the index is out of bounds. |