public static byte[][] ToBytes(CellGrid grid)
 {
     return(ToBytes(GridConverter.ToBitGrid(grid)));
 }
Esempio n. 2
0
 public static string ToBits(CellGrid grid)
 {
     return(ToBits(GridConverter.ToBitGrid(grid)));
 }
        ////////////////////////////////////////////////////////////////////////////////////
        ////////// CellGrid To Converters                                         //////////
        ////////////////////////////////////////////////////////////////////////////////////

        public static string ToString(CellGrid grid, bool newline = true)
        {
            return(ToString(GridConverter.ToBitGrid(grid), newline));
        }