AsmResolver.WindowsAssembly.FromFile C# (CSharp) Méthode

FromFile() public static méthode

Reads a windows assembly image from a file.
public static FromFile ( string file ) : WindowsAssembly
file string The path of the file to read.
Résultat WindowsAssembly
        public static WindowsAssembly FromFile(string file)
        {
            return FromBytes(File.ReadAllBytes(file), new ReadingParameters());
        }