开发者

Listing functions of an unmanaged DLL at runtime in c#

开发者 https://www.devze.com 2022-12-23 22:21 出处:网络
Is it possible to obtain a l开发者_StackOverflow社区ist of functions declared in an unmanaged DLL? I want to create this list in a c# program.

Is it possible to obtain a l开发者_StackOverflow社区ist of functions declared in an unmanaged DLL? I want to create this list in a c# program.

Using dumpbin or System.Reflection.Assembly is not possible.

Thanks


As far as I know, the only way you can do this either:

  • Use a utility (such as dumpbin) and analyse its output from your C# code.
  • Open the target DLL file and manually work out where the export section of the file is located and read that.

You might need the help of too like PE Explorer or similar to help you get up and running by showing you location of the exports in a file.

If you want to do it without a utility, then you will need to understand the PE file format for a Windows DLL file and read the exports section.

Check out this link.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号