DictionaryExtensions.GetOrDefault<TK,TV> Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur par la clé donnée.
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
Paramètres de type
- TK
key type
- TV
type valeur
Paramètres
- dictionary
- IDictionary<TK,TV>
dictionnaire
- key
- TK
clé dans le dictionnaire
Retours
TV
par défaut si la clé n’existe pas dans le dictionnaire.