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 Indexer<T>
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
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
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
In This Article
Back to top Generated by DocFX