Interface IRandomAccessList<T>
- Namespace
- AlgorithmsSW.List
- Assembly
- AlgorithmsSW.dll
Represents a read-only random access list that provides indexed access to its elements.
public interface IRandomAccessList<T> : IReadonlyRandomAccessList<T>, IEnumerable<T>, IEnumerable
Type Parameters
T
The type of elements in the list.
- Inherited Members
- Extension Methods
Properties
this[int]
sets the element at the specified index in the list.
T this[int index] { get; set; }
Parameters
index
intThe zero-based index of the element to get or set.
Property Value
- T
The element at the specified index.