Show / Hide Table of Contents

Class Dictionary.Indexer<TKey, TValue>

Provides strongly-typed access to dictionary indexer.

Inheritance
Object
Dictionary.Indexer<TKey, TValue>
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: DotNext.Collections.Generic
Assembly: DotNext.dll
Syntax
public static class Indexer<TKey, TValue>
Type Parameters
Name Description
TKey

Type of keys in the dictionary.

TValue

Type of values in the dictionary.

Properties

| Improve this Doc View Source

Getter

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX