ConcurrentIndexedDictionaryTKey, TValueItem Property

Gets the value at the specified index in the dictionary.

Definition

Namespace: SnapDB.Collections
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public TValue this[
	int index
] { get; }

Parameters

index  Int32
The index of the value to get.

Return Value

TValue
The value at the specified index.

Exceptions

IndexOutOfRangeException Thrown if the specified index is less than 0, or if it is greater than or equal to the Count of elements in the dictionary.

See Also