Accesses the matrix elements using zero-based indexing.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.2.423.0 (25.2.423.0)
Syntaxpublic double this[
int row,
int column
] { get; }Public ReadOnly Default Property Item (
row As Integer,
column As Integer
) As Double
Get
public:
property double default[int row, int column] {
double get (int row, int column);
}member Item : float with get
Parameters
- row
- Type: SystemInt32
The row index. - column
- Type: SystemInt32
The column index.
Return Value
Type:
DoubleThe value corresponding to the indicated element of the matrix.
Exceptions| Exception | Condition |
|---|
| ArgumentOutOfRangeException |
Thrown when either row or column is less than 0 or greater than 2.
|
See Also