Show / Hide Table of Contents

Class DictionaryType

Provides specialized reflection methods for dictionary types.

Inheritance
object
DictionaryType
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: DotNext.Reflection
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 Description
Func<IDictionary<TKey, TValue>, TKey, TValue>
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 Description
Action<IDictionary<TKey, TValue>, TKey, TValue>
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 Description
Func<IReadOnlyDictionary<TKey, TValue>, TKey, TValue>
Type Parameters
Name Description
TKey
TValue
  • View Source
☀
☾
In this article
Back to top
Supported by the .NET Foundation
☀
☾