TryGetValueDelegate Delegar
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.
Um delegado para 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
Parâmetros
- dictionary
- Object
- key
- String
A chave.
- value
- Object
O valor retornado.
Valor Retornado
Se a chave foi encontrada.