InsertRowBefore

MathMatrix.InsertRowBefore method

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

public void InsertRowBefore(int rowIndex)
ParameterTypeDescription
rowIndexInt32Index of the row before which to insert a new one

Examples

Example:

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

See Also