Click or drag to resize
DictionaryBaseTKey, TValueItem Property
The indexer of the dictionary. This is used to store keys and values and retrieve values from the dictionary. The setter accessor must be overridden in the derived class.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public virtual TValue this[
	TKey key
] { get; set; }

Parameters

key
Type: TKey
Key to find in the dictionary.

Return Value

Type: TValue
The value associated with the key.

Implements

IDictionaryTKey, TValueItemTKey
Exceptions
ExceptionCondition
KeyNotFoundExceptionThrown from the get accessor if the key was not found in the dictionary.
See Also