2021年4月2日星期五

Find all exported DLL methods with C++

Dependency Walker can list all exported methods from a DLL, how can I implement similar features in C#?

List<string> GetExportedMethods(string dllname)  {      List<string> names = new List<string>();      IntPtr handle = Win32.LoadLibrary(dllname);        ...        return names;  }  
https://stackoverflow.com/questions/66926696/find-all-exported-dll-methods-with-c April 03, 2021 at 08:31AM

没有评论:

发表评论