Property this
this[TKey]
Gets values by key.
Declaration
public readonly TValue this[TKey key] { get; }
Parameters
Type | Name | Description |
---|---|---|
TKey | key | The key to look up. |
Property Value
Type | Description |
---|---|
TValue | The value associated with the key. |
Remarks
Getting a key that is not present will throw.
Exceptions
Type | Condition |
---|---|
ArgumentException | For getting, thrown if the key was not present. |