Click or drag to resize

LocalizedDictionaryK, VItem Property (String)

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
C#
public V this[
	string subKey
] { get; }

Parameters

subKey
Type: SystemString
The key of the value to get or set.

Return Value

Type: V
The 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
ExceptionCondition
ArgumentNullExceptionsubKey is .
KeyNotFoundExceptionThe property is retrieved and subKey does not exist in the collection.
See Also