SortedDictionary<TKey,TValue>.ValueCollection.ICollection<TValue>.Contains Método

Definição

Determina se o ICollection<T> contém um valor especificado.

 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

Parâmetros

item
TValue

O objeto a ser localizado no ICollection<T>.

Retornos

true se item for encontrado no ICollection<T>; caso contrário, false.

Implementações

Comentários

As implementações podem variar na forma como determinam a igualdade de objetos; por exemplo, List<T> usa Default, enquanto SortedDictionary<TKey,TValue> permite que o usuário especifique a IComparer<T> implementação a ser usada para comparar chaves.

Este método é uma operação O(n), em que n é Count.

Aplica-se a