BaseIndexer<TKey, TValue>
The BaseIndexer<TKey, TValue> class provides a base implementation for a dictionary-like structure with a custom indexer.
Properties
| Name | Description |
|---|---|
| this[TKey key] | Gets or sets the value associated with the specified key in the dictionary. |
Constructors
| Name | Description |
|---|---|
| BaseIndexer(dictionaryName, dictionary) | Initializes a new instance of the BaseIndexer<TKey, TValue> class with a specified dictionary name and dictionary. |
Generic Types
| Name | Description |
|---|---|
| TValue | Value type of the dictionary. |
| TKey | Key type of the dictionary. |