SortedMapBaseKey, ValueTryGetValue Method |
Gets the value associated with the specified key.
Namespace:
VelocityDb.Collection
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public bool TryGetValue(
Key key,
out Value value
)
Public Function TryGetValue (
key As Key,
<OutAttribute> ByRef value As Value
) As Boolean
public:
bool TryGetValue(
Key key,
[OutAttribute] Value% value
)
member TryGetValue :
key : 'Key *
value : 'Value byref -> bool
Parameters
- key
- Type: Key
The key of the value to get. - value
- Type: Value
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 the value parameter. This parameter is passed uninitialized.
Return Value
Type:
Booleantrue if the set contains an element with the specified key; otherwise, false.
See Also