public BoardGeneric(BoardGeneric <T> b) : this(b.Size) { Array.Copy(b._board, _board, _board.Length); }
public Mask(byte size) { Size = size; _mask = new BoardGeneric <bool>(Size); _border = new HashSet <Tuple <int, int> >(); }