Class Dictionary.Indexer<TKey, TValue>
Provides strongly-typed access to dictionary indexer.
Inherited Members
Namespace: DotNext.Collections.Generic
Assembly: DotNext.dll
Syntax
public static class Dictionary.Indexer<TKey, TValue>Type Parameters
| Name | Description | 
|---|---|
| TKey | Type of keys in the dictionary. | 
| TValue | Type of values in the dictionary. | 
Properties
| Edit this page View SourceGetter
Represents dictionary value getter.
Declaration
public static Func<IDictionary<TKey, TValue>, TKey, TValue> Getter { get; }Property Value
| Type | Description | 
|---|---|
| Func<IDictionary<TKey, TValue>, TKey, TValue> | 
ReadOnly
Represents read-only dictionary indexer.
Declaration
public static Func<IReadOnlyDictionary<TKey, TValue>, TKey, TValue> ReadOnly { get; }Property Value
| Type | Description | 
|---|---|
| Func<IReadOnlyDictionary<TKey, TValue>, TKey, TValue> | 
Setter
Represents dictionary value setter.
Declaration
public static Action<IDictionary<TKey, TValue>, TKey, TValue> Setter { get; }Property Value
| Type | Description | 
|---|---|
| Action<IDictionary<TKey, TValue>, TKey, TValue> |