Condividi tramite


OrderedDictionary<TKey,TValue>.TryGetValue Metodo

Definizione

Overload

TryGetValue(TKey, TValue)

Ottiene il valore associato alla chiave specificata.

TryGetValue(TKey, TValue, Int32)

TryGetValue(TKey, TValue)

Ottiene il valore associato alla chiave specificata.

public:
 virtual bool TryGetValue(TKey key, [Runtime::InteropServices::Out] TValue % value);
public bool TryGetValue(TKey key, out TValue value);
abstract member TryGetValue : 'Key * 'Value -> bool
override this.TryGetValue : 'Key * 'Value -> bool
Public Function TryGetValue (key As TKey, ByRef value As TValue) As Boolean

Parametri

key
TKey

Chiave di cui ottenere il valore.

value
TValue

Quando termina, il valore associato alla chiave specificata, se viene trovata la chiave; in caso contrario, 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.

Implementazioni

Si applica a

TryGetValue(TKey, TValue, Int32)

public:
 bool TryGetValue(TKey key, [Runtime::InteropServices::Out] TValue % value, [Runtime::InteropServices::Out] int % index);
public bool TryGetValue(TKey key, out TValue value, out int index);
member this.TryGetValue : 'Key * 'Value * int -> bool
Public Function TryGetValue (key As TKey, ByRef value As TValue, ByRef index As Integer) As Boolean

Parametri

key
TKey
value
TValue
index
Int32

Restituisce

Si applica a