AA2Install.Archives._7z.Extract C# (CSharp) Метод

Extract() публичный статический Метод

Extracts a 7Zip archive to the temp folder
public static Extract ( string filename, string dest = "" ) : void
filename string Location of the 7Zip file.
dest string Destination of extracted files.
Результат void
        public static void Extract(string filename, string dest = "")
        {
            Extract(filename, "AA2_*", dest);
        }

Same methods

_7z::Extract ( string filename, string wildcard, string dest = "" ) : void