LocalizedDictionaryK, VItem Property (K) |
Gets or sets the value associated with the specified key.
Namespace:
ff14bot.Helpers
Assembly:
RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax public V this[
K primaryKey
] { get; }
Parameters
- primaryKey
- Type: K
The key of the value to get or set.
Return Value
Type:
VThe value associated with the specified key. If the specified key is not found, a get operation throws a
KeyNotFoundException, and a set operation creates a new element with the specified key.
Exceptions Exception | Condition |
---|
ArgumentNullException | primaryKey is . |
KeyNotFoundException | The property is retrieved and primaryKey does not exist in the collection. |
See Also