Click or drag to resize

OrderedDictionaryTKey, TValueTryGetValue Method

Gets the value associated with the specified key.

Namespace:  Ifs.Fnd.Core
Assembly:  Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntax
C#
public bool TryGetValue(
	TKey key,
	out TValue value
)

Parameters

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

Return Value

Type: Boolean
if the OrderedDictionary<TKey,TValue> contains an element with the specified key; otherwise, .

Implements

IDictionaryTKey, TValueTryGetValue(TKey, TValue)
See Also