示例#1
0
        public static void printCaptured(ChessGame game)
        {
            Console.WriteLine("Captured:");
            Console.Write("White: ");
            printHash(game.Captured(Color.white));
            Console.Write("Black: ");
            ConsoleColor aux = Console.ForegroundColor;

            Console.ForegroundColor = ConsoleColor.Yellow;
            printHash(game.Captured(Color.black));
            Console.ForegroundColor = aux;
        }