StateManagedCollection.IList.Insert(Int32, Object) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Insère un élément dans la collection StateManagedCollection au niveau de l'index spécifié.
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
Paramètres
- index
- Int32
Index de base zéro au niveau duquel value
doit être inséré.
- value
- Object
Objet à insérer dans StateManagedCollection.
Implémente
Exceptions
index
spécifié est hors des limites de la collection.
StateManagedCollection est en lecture seule.
Le value
spécifié a la valeur null
.
Remarques
Si index
a la valeur -1, value
est ajouté au début de la StateManagedCollection collection. Si index
est égal au nombre d’éléments de la collection, value
est ajouté à la fin de la collection.