DictionaryExtensions.GetOrDefault<TK,TV> Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um valor pela chave fornecida.
public:
generic <typename TK, typename TV>
[System::Runtime::CompilerServices::Extension]
static TV GetOrDefault(System::Collections::Generic::IDictionary<TK, TV> ^ dictionary, TK key);
public static TV GetOrDefault<TK,TV> (this System.Collections.Generic.IDictionary<TK,TV> dictionary, TK key);
static member GetOrDefault : System.Collections.Generic.IDictionary<'K, 'V> * 'K -> 'V
<Extension()>
Public Function GetOrDefault(Of TK, TV) (dictionary As IDictionary(Of TK, TV), key As TK) As TV
Parâmetros de tipo
- TK
tipo de chave
- TV
tipo de valor
Parâmetros
- dictionary
- IDictionary<TK,TV>
dicionário
- key
- TK
chave no dicionário
Retornos
TV
padrão se a chave não existir no dicionário.