InsertColumnBefore

MathMatrix.InsertColumnBefore method

在指定的列之前插入一个新列 最初新列中的所有元素都是空的。

public void InsertColumnBefore(int columnIndex)
范围类型描述
columnIndexInt32在其前插入新的列的索引

例子

示例:

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

也可以看看