Edit

Share via


ReadOnlyDictionary<K,V>.TryGetValue(K, V) Method

Definition

Gets the element with the specified key.

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

Parameters

key
K

The key of the element to get.

value
V

The element with the specified key.

Returns

True if it retrieves a value otherwise, false.

Applies to