Property this
this[TKey]
Gets and sets values by key.
Declaration
public TValue this[TKey key] { get; set; }
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. Setting a key that is not already present will add the key.
Exceptions
| Type | Condition |
|---|---|
| ArgumentException | For getting, thrown if the key was not present. |