Example #1
0
 /// <summary>
 /// Call for function to save the current table to file
 /// </summary>
 public void SaveTable()
 {
     CurrentTable.SudokuArray = SudokuManagerComponent.ConvertToArray(CurrentTable.SudokuGrid);
     FileManager.SaveToFile(CurrentTable.SudokuArray);
 }