ReadOnlyDictionary<K,V>.TryGetValue(K, V) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.