ImmutableDictionary.Contains<TKey,TValue> Método

Definição

Determina se o dicionário imutável especificado contém o par chave/valor especificado.

public:
generic <typename TKey, typename TValue>
[System::Runtime::CompilerServices::Extension]
 static bool Contains(System::Collections::Immutable::IImmutableDictionary<TKey, TValue> ^ map, TKey key, TValue value);
public static bool Contains<TKey,TValue> (this System.Collections.Immutable.IImmutableDictionary<TKey,TValue> map, TKey key, TValue value);
static member Contains : System.Collections.Immutable.IImmutableDictionary<'Key, 'Value> * 'Key * 'Value -> bool
<Extension()>
Public Function Contains(Of TKey, TValue) (map As IImmutableDictionary(Of TKey, TValue), key As TKey, value As TValue) As Boolean

Parâmetros de tipo

TKey

O tipo das chaves no dicionário imutável.

TValue

O tipo dos valores no dicionário imutável.

Parâmetros

map
IImmutableDictionary<TKey,TValue>

O dicionário imutável a ser pesquisado.

key
TKey

A chave a ser localizada no dicionário imutável.

value
TValue

O valor a ser localizado na chave especificada, se a chave for encontrada.

Retornos

true se o mapa contiver o par chave/valor especificado; caso contrário, false.

Aplica-se a