예제 #1
0
파일: Grid.cs 프로젝트: jammycakes/NSudoku
 public Cell this[CellRef index] => _cells[index.Row - 1][index.Column - 1];
예제 #2
0
파일: Cell.cs 프로젝트: jammycakes/NSudoku
 public Cell(Grid grid, CellRef @ref)
 {
     Grid       = grid;
     Ref        = @ref;
     Candidates = new Candidates(Grid.Size);
 }