Collection<T>.IList.Insert(Int32, Object) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inserisce un elemento nell'oggetto IList in corrispondenza dell'indice specificato.
virtual void System.Collections.IList.Insert(int index, System::Object ^ value) = System::Collections::IList::Insert;
void IList.Insert (int index, object value);
abstract member System.Collections.IList.Insert : int * obj -> unit
override this.System.Collections.IList.Insert : int * obj -> unit
Sub Insert (index As Integer, value As Object) Implements IList.Insert
Parametri
- index
- Int32
Indice in base zero nel quale value
deve essere inserito.
Implementazioni
Eccezioni
index
non è un indice valido nell'interfaccia IList.
Il tipo di value
non può essere assegnato a IList.
Commenti
Se index
è uguale al numero di elementi in IList, value
viene aggiunto alla fine.
Questo metodo è un'operazione O(n
), dove n
è Count.