ConcurrentIndexedDictionaryTKey, TValueItem Property
Gets the value at the specified index in the dictionary.
Namespace: SnapDB.CollectionsAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public TValue this[
int index
] { get; }
Public ReadOnly Default Property Item (
index As Integer
) As TValue
Get
public:
property TValue default[int index] {
TValue get (int index);
}
function get_Item(index);
- index Int32
- The index of the value to get.
TValueThe value at the specified index.
| 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.
|