TryGetValueDelegate Délégué
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.
Délégué pour TryGetValue(TKey, TValue).
public delegate bool TryGetValueDelegate(System::Object ^ dictionary, System::String ^ key, [Runtime::InteropServices::Out] System::Object ^ % value);
public delegate bool TryGetValueDelegate(object dictionary, string key, out object value);
type TryGetValueDelegate = delegate of obj * string * obj -> bool
Public Delegate Function TryGetValueDelegate(dictionary As Object, key As String, ByRef value As Object) As Boolean
Paramètres
- dictionary
- Object
L’IDictionary<TKey,TValue>opérateur
- key
- String
Clé.
- value
- Object
Valeur de retour.
Valeur renvoyée
Indique si la clé a été trouvée.