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