Dictionary<Tkey, TValue>
Represents a collection of keys and values.
Last updated
Was this helpful?
Represents a collection of keys and values.
Last updated
Was this helpful?
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 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 class is implemented as a hash table.