Dictionary<Tkey, TValue>
Represents a collection of keys and values.
Added 04/11/2020 Working with dictionaries for adding a filter value to the backoffice of Umbraco on CAS.
TKey
- The type of the keys in the dictionary.
TValue
- The type of the values in the dictionary.
The Dictionary<TKey,TValue> generic class provides a mapping from a set of keys to a set of values. Each addition to the dictionary consists of a value and its associated key. Retrieving a value by using its key is very fast, close to O(1), because the Dictionary<TKey,TValue> class is implemented as a hash table.
Last updated