StringCollection.IList.Add(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.
Ajoute un objet à la fin de la StringCollection.
virtual int System.Collections.IList.Add(System::Object ^ value) = System::Collections::IList::Add;
int IList.Add (object value);
int IList.Add (object? value);
abstract member System.Collections.IList.Add : obj -> int
override this.System.Collections.IList.Add : obj -> int
Function Add (value As Object) As Integer Implements IList.Add
Paramètres
- value
- Object
Object à ajouter à la fin de StringCollection. La valeur peut être null
.
Retours
Index StringCollection auquel value
a été ajouté.
Implémente
Exceptions
Remarques
StringCollection accepte null
comme valeur valide et autorise les éléments en double.
Si Count est déjà égal à la capacité, la capacité du StringCollection est augmentée en réaffectant automatiquement le tableau interne, et les éléments existants sont copiés dans le nouveau tableau avant l’ajout du nouvel élément.
Si Count est inférieur à la capacité, cette méthode est une opération O(1). Si la capacité doit être augmentée pour prendre en charge le nouvel élément, cette méthode devient une opération O(n
), où n
est Count.