Пример #1
0
 public Clone(Clone anotherClone)
 {
     history    = new Stack();
     knowledges = new Stack();
     history.Clone(anotherClone.history);
     knowledges.Clone(anotherClone.knowledges);
 }
Пример #2
0
 public Clone GetClone() =>
 new Clone(learned.Clone(), cancelled.Clone());