public static void Main()
byte[,] gamestate = new byte[3,3];
public static void PrintGameBoard()
Console.WriteLine("/----------------\\");
Console.WriteLine("| {0,2} | {1,2} | {2,4} |","X","","O");
Console.WriteLine("|----------*-----|");
Console.WriteLine("| {0,2} | {1,2} | {2,4} |","O","","");
Console.WriteLine("|----------*-----|");
Console.WriteLine("| {0,2} | {1,2} | {2,4} |","O","X","");
Console.WriteLine("/----------------\\");