SortedMapBaseKey, ValueItem Property |
Gets or sets the value associated with a key
Namespace:
VelocityDb.Collection
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:
property Value default[Key key] {
Value get (Key key);
void set (Key key, Value value);
}
member Item : 'Value with get, set
Parameters
- key
- Type: Key
The lookup key
Return Value
Type:
ValueThe value associated with a key or throws KeyNotFoundException
See Also