Gets the value associated with the specified key.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public virtual bool TryGetValue(
	TKey key,
	out TValue value
)
Visual Basic
Public Overridable Function TryGetValue ( 
	key As TKey,
	<OutAttribute> ByRef value As TValue
) As Boolean
Visual C++
public:
virtual bool TryGetValue(
	TKey key, 
	[OutAttribute] TValue% value
)
F#
abstract TryGetValue : 
        key : 'TKey * 
        value : 'TValue byref -> bool 
override TryGetValue : 
        key : 'TKey * 
        value : 'TValue byref -> bool 

Parameters

key
Type: TKey
The key whose value to get.
value
Type: TValue%
When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

Type: Boolean
true if the object that implements Dictionary contains an element with the specified key; otherwise, false.

Implements

IDictionary<(Of <(<'TKey, TValue>)>)>..::..TryGetValue(TKey, TValue%)

See Also