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 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 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>
| Edit this page 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>
| Edit this page 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>
  • Edit this page
  • View Source
☀
☾
In this article
Back to top
Supported by the .NET Foundation
☀
☾