OrderedDictionary<TKey,TValue>.ValueCollection.IList<TValue>.Insert Method

Definition

Inserts an item to the IList<T> at the specified index.

 virtual void System.Collections.Generic.IList<TValue>.Insert(int index, TValue item) = System::Collections::Generic::IList<TValue>::Insert;
void IList<TValue>.Insert (int index, TValue item);
abstract member System.Collections.Generic.IList<TValue>.Insert : int * 'Value -> unit
override this.System.Collections.Generic.IList<TValue>.Insert : int * 'Value -> unit
Sub Insert (index As Integer, item As TValue) Implements IList(Of TValue).Insert

Parameters

index
Int32

The zero-based index at which item should be inserted.

item
TValue

The object to insert into the IList<T>.

Implements

Applies to