Example #1
0
 private static void DisplayCell(Board board, int row, int col)
 {
     if (board.HasValue(row, col))
     {
         DisplayCellWithValue(board, row, col);
     }
     else
     {
         DisplayCellNoValue(board, row, col);
     }
 }