Dictionary<TKey,TValue>.ValueCollection.ICollection<TValue>.Contains Méthode

Définition

Détermine si ICollection<T> contient une valeur spécifique.

 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 avoir des modes différents de détermination de l'égalité des objets ; par exemple, List<T> utilise Default, alors que Dictionary<TKey,TValue> permet à l'utilisateur de spécifier l'implémentation de IComparer<T> à utiliser pour comparer des clés.

Cette méthode est une opération O(n), où n est Count.

S’applique à