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

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

Reads a windows assembly image from a file.
public static FromFile ( string file ) : WindowsAssembly
file string The path of the file to read.
Результат WindowsAssembly
        public static WindowsAssembly FromFile(string file)
        {
            return FromBytes(File.ReadAllBytes(file), new ReadingParameters());
        }