Collection<T>.IList.Contains(Object) Méthode

Définition

Détermine si IList contient une valeur spécifique.

 virtual bool System.Collections.IList.Contains(System::Object ^ value) = System::Collections::IList::Contains;
bool IList.Contains (object value);
abstract member System.Collections.IList.Contains : obj -> bool
override this.System.Collections.IList.Contains : obj -> bool
Function Contains (value As Object) As Boolean Implements IList.Contains

Paramètres

value
Object

Object à rechercher dans IList.

Retours

true si le Object se trouve dans le IList ; sinon, false.

Implémente

Exceptions

value est d’un type qui ne peut pas être assigné à IList.

Remarques

Cette méthode détermine l’égalité en déterminant d’abord si value est de type T (ou null), puis en appelant Contains.

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

S’applique à