Minesweeper.Board.Board C# (CSharp) Method

Board() public method

public Board ( int nrows, int ncols ) : System
nrows int
ncols int
return System
        public Board(int nrows, int ncols)
        {
            this.nrows = nrows;
            this.ncols = ncols;
            this.cells = new char[nrows, ncols];
        }