Property this
this[long]
Gets or sets item at the specified index.
TItem? this[long index] { get; set; }
Parameters
indexlongThe zero-based index of the element to get or set.
Property Value
- TItem
The element at the specified index.
this[int]
Gets or sets the element at the specified index.
TItem? this[int index] { get; set; }
Parameters
indexintThe zero-based index of the element to get or set.
Property Value
- TItem
The element at the specified index.
this[int?]
Gets the element at the specified index.
TItem? this[int? index] { get; set; }
Parameters
indexint?The zero-based index of the element or
null.
Property Value
- TItem
The element at the specified index or
null.