Class List.Indexer<T>
Provides strongly-typed access to list indexer.
Inherited Members
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 SourceGetter
Represents list item getter.
Declaration
public static Func<IList<T>, int, T> Getter { get; }
Property Value
| Type | Description |
|---|---|
| Func<IList<T>, int, T> |
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> |
Setter
Represents list item setter.
Declaration
public static Action<IList<T>, int, T> Setter { get; }
Property Value
| Type | Description |
|---|---|
| Action<IList<T>, int, T> |