| DequeTIListTInsert Method |
Inserts an item into the
IListT at the specified index.
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax void IList<T>.Insert(
int index,
T item
)
Private Sub Insert (
index As Integer,
item As T
) Implements IList(Of T).Insert
private:
virtual void Insert(
int index,
T item
) sealed = IList<T>::Insert
private abstract Insert :
index : int *
item : 'T -> unit
private override Insert :
index : int *
item : 'T -> unit
Parameters
- index
- Type: SystemInt32
The zero-based index at which item should be inserted.
- item
- Type: T
The object to insert into the IListT.
Implements
IListTInsert(Int32, T)Exceptions See Also