Property this
- Namespace
- Alternet.Base.Collections
- Assembly
- Alternet.UI.Common.dll
this[long]
Gets or sets the element at the specified index.
public T this[long index] { get; set; }
Parameters
index
longThe zero-based index of the element to get or set.
Property Value
- T
The element at the specified index.
this[int]
Gets or sets the element at the specified index.
public 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.
this[int?]
Gets or sets the element at the specified index.
public T? this[int? index] { get; }
Parameters
index
int?The zero-based index of the element or
null
.
Property Value
- T
The element at the specified index or
null
ifindex
isnull
.