[]
Inserts an item to the System.Collections.IList at the specified index.
public void Insert(int index, object value)
Type | Name | Description |
---|---|---|
int | index | The zero-based index at which value should be inserted. |
object | value | The object to insert into the System.Collections.IList. |
Inserts an item to the System.Collections.Generic.IList<> at the specified index.
public void Insert(int index, T item)
Type | Name | Description |
---|---|---|
int | index | The zero-based index at which item should be inserted. |
T | item | The object to insert into the System.Collections.Generic.IList<>. |