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