Show / Hide Table of Contents

Class List.Indexer<T>

Provides strongly-typed access to list indexer.

Inheritance
Object
List.Indexer<T>
Namespace: DotNext.Collections.Generic
Assembly: DotNext.dll
Syntax
public static class Indexer<T> : object
Type Parameters
Name Description
T

Type of list items.

Properties

| Improve this Doc View Source

Getter

Represents list item getter.

Declaration
public static Func<IList<T>, int, T> Getter { get; }
Property Value
Type Description
DotNext.Func<IList<T>, Int32, T>
| Improve this Doc View Source

ReadOnly

Represents read-only list item getter.

Declaration
public static Func<IReadOnlyList<T>, int, T> ReadOnly { get; }
Property Value
Type Description
DotNext.Func<IReadOnlyList<T>, Int32, T>
| Improve this Doc View Source

Setter

Represents list item setter.

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