, , , , . : https://sourceforge.net/projects/processhacker/files. ProcessHacker.Common ProcessHacker.Native, .
Here's how to use it:
using ProcessHacker.Native.Image;
MappedImage image = new MappedImage("file.exe");
for (int i = 0; i < image.Imports.Count; i++)
{
Console.WriteLine("Imports for " + image.Imports[i].Name + ":");
for (int j = 0; j < image.Imports[i].Count; j++)
Console.WriteLine(image.Imports[i][j].Name);
}
I do not know how to work with .NET links.
source
share