Property Item
Item[K]
Indexer by key for dictionary.
The get method will throw an exception if no entry is found.
The set method behaves like C5.DictionaryBase`2.UpdateOrAdd(`0,`1).
Declaration
public virtual V this[K key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
K | key |
Property Value
Type | Description |
---|---|
V | The value corresponding to the key |
Implements
Exceptions
Type | Condition |
---|---|
NoSuchItemException | On get if no entry is found. |