MineSweeper.Cell.Cell C# (CSharp) Метод

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

public Cell ( int row, int column ) : System
row int
column int
Результат System
        public Cell(int row, int column)
        {
            Row = row;
            Column = column;
        }
Cell