Esempio n. 1
0
        public void Restore(PatchModel patch)
        {
            var patcher = new Patcher();
            patcher.Patches.Add(patch.ToPatch());

            patcher.Apply(this.ExeFileName, false);
        }
Esempio n. 2
0
        public void Apply(PatchModel patch)
        {
            var patcher = new Patcher();
            patcher.Patches.Add(patch.ToPatch());

            patcher.Apply(this.ExeFileName, true);
        }
Esempio n. 3
0
        public void Restore(PatchModel patch)
        {
            var patcher = new Patcher();

            patcher.Patches.Add(patch.ToPatch());

            patcher.Apply(this.ExeFileName, false);
        }
Esempio n. 4
0
        public void Apply(PatchModel patch)
        {
            var patcher = new Patcher();

            patcher.Patches.Add(patch.ToPatch());

            patcher.Apply(this.ExeFileName, true);
        }