Minesweeper.Board.Board C# (CSharp) Метод

Board() публичный Метод

public Board ( int nrows, int ncols ) : System
nrows int
ncols int
Результат System
        public Board(int nrows, int ncols)
        {
            this.nrows = nrows;
            this.ncols = ncols;
            this.cells = new char[nrows, ncols];
        }