GeometryClassLibrary.MatricesMatrix.MatricesMatrix C# (CSharp) Method

MatricesMatrix() public method

Creates a square matrix with the specified number of rows and columns the constructor that is called when you say new MatricesMatrix(numberOfRows, numberOfColumns)
public MatricesMatrix ( int numRowsAndColumns ) : System
numRowsAndColumns int
return System
        public MatricesMatrix(int numRowsAndColumns)
        {
            _matrices = new Matrix[numRowsAndColumns, numRowsAndColumns];
        }

Same methods

MatricesMatrix::MatricesMatrix ( int numRows, int numCols ) : System