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