RowCount

MathMatrix.RowCount property

Número de filas en la matriz

public int RowCount { get; }

Ejemplos

Ejemplo:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
int rowCount = matrix.RowCount;

Ver también