[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Tries the get value.

Namespace: net.esper.compat
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Function TryGetValue ( _
	key As K, _
	<OutAttribute> ByRef value As V _
) As Boolean
C#
public bool TryGetValue (
	K key,
	out V value
)
Visual C++
public:
virtual bool TryGetValue (
	K key, 
	V% value
) sealed

Parameters

key
K type parameter of net.esper.compat.ETreeDictionary<(Of K, V>).
The key.
value
V type parameter of net.esper.compat.ETreeDictionary<(Of K, V>).
The value.

Return Value