Exemplo n.º 1
0
 public void Redo(UndoStack stack)
 {
     for (int i = undolist.Length - 1; i >= 0; --i)
     {
         stack.RunRedo(undolist[i]);
     }
 }
Exemplo n.º 2
0
 public void Redo(UndoStack stack)
 {
     for (int i = undolist.Length - 1; i >= 0; --i) {
         stack.RunRedo(undolist[i]);
     }
 }