Show / Hide Table of Contents

Class Dictionary.Indexer<K, V>

Provides strongly-typed access to dictionary indexer.

Inheritance
Object
Dictionary.Indexer<K, V>
Namespace: DotNext.Collections.Generic
Assembly: DotNext.dll
Syntax
public static class Indexer<K, V> : object
Type Parameters
Name Description
K

Type of keys in the dictionary.

V

Type of values in the dictionary.

Properties

| Improve this Doc View Source

Getter

Represents dictionary value getter.

Declaration
public static Func<IDictionary<K, V>, K, V> Getter { get; }
Property Value
Type Description
DotNext.Func<IDictionary<K, V>, K, V>
| Improve this Doc View Source

ReadOnly

Represents read-only dictionary indexer.

Declaration
public static Func<IReadOnlyDictionary<K, V>, K, V> ReadOnly { get; }
Property Value
Type Description
DotNext.Func<IReadOnlyDictionary<K, V>, K, V>
| Improve this Doc View Source

Setter

Represents dictionary value setter.

Declaration
public static Action<IDictionary<K, V>, K, V> Setter { get; }
Property Value
Type Description
Action<IDictionary<K, V>, K, V>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX