static void Main(string[] args) { TicTacToe game = new TicTacToe(); game.Play(); Console.ReadKey(); }
static void Main(string[] args) { TicTacToe game = new TicTacToe(); game.PrintBoard(); game.Play(); Console.WriteLine("Press any key to exit..."); Console.ReadKey(); }