forwardContainsKey Method    Table of ContentStringHelper Classforward
ReadOnlyDictionary<TKey, TValue>.TryGetValue Method
Try to get value object from dictionary.

Namespace:  OnixS.SimpleBinaryEncoding
Assembly:  OnixS.SimpleBinaryEncoding-net-4.7 (in OnixS.SimpleBinaryEncoding-net-4.7.dll) Version: 2.3.1.0 (2.3.1.0)
Syntax
C#
public bool TryGetValue(
	TKey key,
	out TValue value
)

Parameters

key
Type: TKey
Key object.
value
Type: TValue
Value object.

Return Value

Type: Boolean
True if dictionary contains key specified, false otherwise.
See Also