Click or drag to resize

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

Parameters

primaryKey
Type: K
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
ArgumentNullExceptionprimaryKey is .
KeyNotFoundExceptionThe property is retrieved and primaryKey does not exist in the collection.
See Also