Class DictionaryType
Provides specialized reflection methods for
dictionary types.
Inheritance
DictionaryType
Assembly: DotNext.dll
Syntax
public static class DictionaryType
Methods
View Source
get_IndexerGetter<TKey, TValue>()
Represents dictionary value getter.
Declaration
public static Func<IDictionary<TKey, TValue>, TKey, TValue> get_IndexerGetter<TKey, TValue>()
Returns
Type Parameters
| Name |
Description |
| TKey |
|
| TValue |
|
View Source
get_IndexerSetter<TKey, TValue>()
Represents dictionary value setter.
Declaration
public static Action<IDictionary<TKey, TValue>, TKey, TValue> get_IndexerSetter<TKey, TValue>()
Returns
Type Parameters
| Name |
Description |
| TKey |
|
| TValue |
|
View Source
get_Indexer<TKey, TValue>()
Represents read-only dictionary indexer.
Declaration
public static Func<IReadOnlyDictionary<TKey, TValue>, TKey, TValue> get_Indexer<TKey, TValue>()
Returns
Type Parameters
| Name |
Description |
| TKey |
|
| TValue |
|