Exemplo n.º 1
0
        private static void DumpBoard(Board board, string header, Cell highlightCell = null)
        {
            Console.WriteLine(header);

            var dump = board.GetDump(highlightCell);
            Console.WriteLine(dump);
        }