SortedDictionary<TKey,TValue>.ValueCollection.ICollection<TValue>.Contains 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.
Détermine si ICollection<T> contient une valeur spécifiée.
virtual bool System.Collections.Generic.ICollection<TValue>.Contains(TValue item) = System::Collections::Generic::ICollection<TValue>::Contains;
bool ICollection<TValue>.Contains (TValue item);
abstract member System.Collections.Generic.ICollection<TValue>.Contains : 'Value -> bool
override this.System.Collections.Generic.ICollection<TValue>.Contains : 'Value -> bool
Function Contains (item As TValue) As Boolean Implements ICollection(Of TValue).Contains
Paramètres
- item
- TValue
Objet à rechercher dans ICollection<T>.
Retours
true
si item
existe dans ICollection<T> ; sinon, false
.
Implémente
Remarques
Les implémentations peuvent varier dans la façon dont elles déterminent l’égalité des objets ; par exemple, List<T> utilise Default, tandis que SortedDictionary<TKey,TValue> permet à l’utilisateur de spécifier l’implémentation IComparer<T> à utiliser pour comparer les clés.
Cette méthode est une opération O(n
), où n
est Count.