InsertRowAfter

MathMatrix.InsertRowAfter method

在指定行之后插入一个新行 最初新行中的所有元素都为空。

public void InsertRowAfter(int rowIndex)
范围类型描述
rowIndexInt32插入新行的索引

例子

示例:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
matrix.InsertRowAfter(1);

也可以看看