List<T>.IList.Insert(Int32, Object) Metodo

Definizione

Inserisce un elemento in IList in corrispondenza dell'indice specificato.

 virtual void System.Collections.IList.Insert(int index, System::Object ^ item) = System::Collections::IList::Insert;
void IList.Insert (int index, object item);
abstract member System.Collections.IList.Insert : int * obj -> unit
override this.System.Collections.IList.Insert : int * obj -> unit
Sub Insert (index As Integer, item As Object) Implements IList.Insert

Parametri

index
Int32

Indice in base zero nel quale item deve essere inserito.

item
Object

Oggetto da inserire in IList.

Implementazioni

Eccezioni

index non è un indice valido nell'interfaccia IList.

Il tipo di item non può essere assegnato a IList.

Commenti

Se index è uguale al numero di elementi in IList, item viene aggiunto alla fine.

Questo metodo è un'operazione O(n), dove n è Count.

Si applica a