I have a enum class "Figure" and board:
public enum Figure { X, O }
private Figure[,] board = new Figure[boardSize, boardSize];
When there are no values on the board, I want add null value to board.
Example:
board[0,0] = null
- but it's wrong.
How i can do that?