示例#1
0
        static void Main(string[] args)
        {
            Board chess = new Board(8);

            chess.Fill();
            chess.Print();
            chess.Question();
            System.Console.ReadKey();
        }