Beispiel #1
0
        public Board CreateChildBoard(Cell changedCell, int newValue)
        {
            var duplicate = changedCell.Duplicate();

            duplicate.CurrentNumber = newValue;

            var board = new Board(this, duplicate);

            return(board);
        }