ExpandoObject.IDictionary<String,Object>.TryGetValue Metodo

Definizione

Ottiene il valore associato alla chiave specificata.

 virtual bool System.Collections.Generic.IDictionary<System.String,System.Object>.TryGetValue(System::String ^ key, [Runtime::InteropServices::Out] System::Object ^ % value) = System::Collections::Generic::IDictionary<System::String ^, System::Object ^>::TryGetValue;
bool IDictionary<string,object>.TryGetValue (string key, out object value);
abstract member System.Collections.Generic.IDictionary<System.String,System.Object>.TryGetValue : string * obj -> bool
override this.System.Collections.Generic.IDictionary<System.String,System.Object>.TryGetValue : string * obj -> bool
Function TryGetValue (key As String, ByRef value As Object) As Boolean Implements IDictionary(Of String, Object).TryGetValue

Parametri

key
String

Chiave del valore da ottenere.

value
Object

Quando termina, questo metodo restituisce il valore associato alla chiave specificata nel caso in cui la chiave venga trovata. In caso contrario, restituisce il valore predefinito per il tipo del parametro value. Questo parametro viene passato non inizializzato.

Restituisce

true se l'oggetto che implementa IDictionary<TKey,TValue> contiene un elemento con la chiave specificata. In caso contrario, false.

Si applica a