Show / Hide Table of Contents

Class List.Indexer<T>

Provides strongly-typed access to list indexer.

Inheritance
object
List.Indexer<T>
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 List.Indexer<T>
Type Parameters
Name Description
T

Type of list items.

Properties

| Edit this page View Source

Getter

Represents list item getter.

Declaration
public static Func<IList<T>, int, T> Getter { get; }
Property Value
Type Description
Func<IList<T>, int, T>
| Edit this page View Source

ReadOnly

Represents read-only list item getter.

Declaration
public static Func<IReadOnlyList<T>, int, T> ReadOnly { get; }
Property Value
Type Description
Func<IReadOnlyList<T>, int, T>
| Edit this page View Source

Setter

Represents list item setter.

Declaration
public static Action<IList<T>, int, T> Setter { get; }
Property Value
Type Description
Action<IList<T>, int, T>
  • Edit this page
  • View Source
☀
☾
In this article
Back to top
Supported by the .NET Foundation
☀
☾