InsertColumnBefore

MathMatrix.InsertColumnBefore method

Insert a new column before the specified one Initially all elements in the new column are null.

public void InsertColumnBefore(int columnIndex)
ParameterTypeDescription
columnIndexInt32Index of the column before which to insert a new one

Examples

Example:

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

See Also