AsmResolver.WindowsAssembly.Write C# (CSharp) Метод

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

Rebuilds and writes the assembly to a specific file path.
public Write ( string file ) : void
file string The file path to write the image to.
Результат void
        public void Write(string file)
        {
            using (var stream = File.Create(file))
            {
                Write(new BuildingParameters(new BinaryStreamWriter(stream)));
            }
        }

Same methods

WindowsAssembly::Write ( BuildingParameters parameters ) : void
WindowsAssembly::Write ( IBinaryStreamWriter writer ) : void