Пример #1
0
        private static CellDictionary GenerateCellDictionary(HashSet <Coordinate> newDictSet)
        {
            var newCellDict = new CellDictionary();

            foreach (var coordinate in newDictSet)
            {
                newCellDict.Add(Cell.FromCoordinateSet(coordinate, newDictSet));
            }

            return(newCellDict);
        }