BTreeMapBaseKey, ValueItem Property |
Given a lookup key, returns the corresponding value within the map or null if not found
Namespace:
VelocityDb.Collection.BTree
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public Value this[
Key key
] { get; set; }
Public Default Property Item (
key As Key
) As Value
Get
Set
public:
virtual property Value default[Key key] {
Value get (Key key) sealed;
void set (Key key, Value value) sealed;
}
abstract Item : 'Value with get, set
override Item : 'Value with get, set
Parameters
- key
- Type: Key
The lookup key
Return Value
Type:
ValueThe value matching the lookup key or null if not found
See Also