AvalonPatch.AvalonPatch.installZip C# (CSharp) Метод

installZip() публичный Метод

public installZip ( patchFile thePatch ) : void
thePatch patchFile
Результат void
        void installZip(patchFile thePatch)
        {
            FastZip fz = new FastZip();
            fz.ExtractZip(Path.Combine(tempExtractPath, thePatch.patchFileName), Path.Combine(tempExtractPath, Path.GetFileNameWithoutExtension(thePatch.patchFileName)), "");
            checkAndCopy(Path.Combine(tempExtractPath, Path.GetFileNameWithoutExtension(thePatch.patchFileName)));
        }