Пример #1
0
 public void ApplyTo(IPatchTarget target)
 {
     foreach (var operation in Operations)
     {
         target.ApplyOperation(operation);
     }
 }
Пример #2
0
 public PatchQueueItem(string file, IPatchTarget container)
 {
     this.File      = file;
     this.Container = container;
 }