Exemple #1
0
 public Action(
     UndoRedoList <T> owner,
     Operation operation,
     int index,
     T item)
 {
     this.owner     = owner;
     this.operation = operation;
     this.index     = index;
     this.item      = item;
 }
Exemple #2
0
 public UndoRedoItem(UndoRedoList <T> owner, int index, T instance) :
     base(instance)
 {
     this.owner = owner;
     this.index = index;
 }