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 row,
int column
] { get; set; }
Public Default Property Item (
row As Integer,
column As Integer
) As T
Get
Set
public:
property T default[int row, int column] {
T get (int row, int column);
void set (int row, int column, T value);
}
member Item : 'T with get, set
Parameters
- row
- Type: SystemInt32
The zero-based row of the element. - column
- Type: SystemInt32
The zero-based column of the element.
Return Value
Type:
TThe value of the element.
Reference