Click or drag to resize

TransformDictionaryTK1, TV1, TK2, TV2TryGetValue Method

Gets the value associated with the specified key.

Namespace:  com.espertech.esper.compat.collections
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
public bool TryGetValue(
	TK1 key,
	out TV1 value
)

Parameters

key
Type: TK1
The key whose value to get.
value
Type: TV1
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 : IDictionaryTKey, TValue contains an element with the specified key; otherwise, false.
Exceptions
ExceptionCondition
NotImplementedException
See Also