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 public bool TryGetValue(
TKey key,
out TValue value
)
Parameters
- key
- Type: TKey
Key object. - value
- Type: TValue
Value object.
Return Value
Type:
BooleanTrue if dictionary contains key specified, false otherwise.
See Also