[]
Inserts an item to the IList at the specified index.
public void Insert(int index, object value)
Public Sub Insert(index As Integer, value As Object)
| Type | Name | Description |
|---|---|---|
| int | index | The zero-based index at which value should be inserted |
| object | value |
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | index is not a valid index in the IList. |
| NotSupportedException | |
| NullReferenceException | value is null reference in the IList. |