Click or drag to resize

FixedDictionaryK, VTryGetValue 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(
	K key,
	out V value
)

Parameters

key
Type: K
The key whose value to get.
value
Type: V
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
ArgumentNullExceptionkey is null.
See Also