Method Insert
Insert(int, T)
Inserts an element at the specified index, resizing as necessary.
Declaration
public void Insert(int index, T elem)Parameters
| Type | Name | Description | 
|---|---|---|
| int | index | The position at which to insert the new element. | 
| T | elem | The element to add to the buffer. | 
Remarks
The buffer is resized if it has no additional capacity.
Examples
if (insertionIndex < buffer.Length)
    buffer.Insert(insertionIndex, 6);