Gets or sets the element at the specified position.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public T this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As T
Get
Set
public:
property T default[int index] {
T get (int index);
void set (int index, T value);
}
member Item : 'T with get, set
Parameters
- index
- Type: SystemInt32
The zero-based index of the element in the array slice.
Return Value
Type:
TThe value of the element.
Reference