IList<T>.Insert(Integer,T) Method
Inserts an item to the IList<T> at the specified index.
public
procedure Insert(index: Integer; const item: T);
Parameters
- index
- Type: Integer
The zero-based index at which item should be inserted.
- item
- Type: T
The element to insert into the IList<T>.