RowCount

IMathMatrix.RowCount 属性

矩阵的行数

public int RowCount { get; }

示例

示例:

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

另见