示例#1
0
 public Parents(Chromosone father, Chromosone mother)
 {
     Father = father;
     Mother = mother;
 }
 public Chromosone Append(Chromosone other)
 {
     var newBits = _bits.ToList();
     newBits.AddRange(other._bits.ToList());
     return new Chromosone(newBits);
 }