Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Class: RT.Util.Collections.AutoDictionary<TKey, TValue>Summary
Implements a dictionary with an indexer which automatically inserts missing keys on reads. In all other ways it
behaves exactly the same as a standard dictionary. Generic type parametersTKey | This type parameter is not documented. | TValue | This type parameter is not documented. |
ConstructorsInstance methodsvoid | Add(TKey key, TValue value) | Equivalent to the same method in Dictionary<TKey, TValue>. | void | | bool | | bool | | Dictionary<TKey, TValue>.Enumerator | | void | | void | | bool | | bool | |
Instance propertiesIEqualityComparer<TKey> | | Equivalent to the same property in Dictionary<TKey, TValue>. | int | | TValue | |
Gets or sets the element with the specified key. When getting a key that hasn't been set before, the key is
added to the dictionary with a value returned by the initializer as configured in the constructor. | Dictionary<TKey, TValue>.KeyCollection | | Equivalent to the same property in Dictionary<TKey, TValue>. | Dictionary<TKey, TValue>.ValueCollection | |
|