public bool Put(XOE choice, int i, int j) { if (this.board[i, j] != XOE.E) { return(false); } this.board[i, j] = choice; this.count++; return(true); }
static void Main(string[] args) { XOE[,] x = new XOE[3, 3]; Console.WriteLine("Hello World!"); }