Пример #1
0
 public static List <Cell> Neighbours(this IEnumerable <Cell> grid, Cell cell)
 {
     return(grid.Where(otherCell => cell.IsNextTo(otherCell) && otherCell.SwitchedOn).ToList());
 }
Пример #2
0
 public static List<Cell> Neighbours(this IEnumerable<Cell> grid, Cell cell)
 {
     return grid.Where(otherCell => cell.IsNextTo(otherCell) && otherCell.SwitchedOn).ToList();
 }