Which program in Visual Studio lets me look into DLLs to see its API?

后端 未结 8 1206
鱼传尺愫
鱼传尺愫 2020-12-14 14:45

See the question. I want to see the methods and classes offered by a DLLs library.

8条回答
  •  不思量自难忘°
    2020-12-14 15:45

    There's a dependency tracker tool that comes with the Windows SDK (formerly the Platform SDK), it's got a reasonable GUI for looking inside executables and DLL's.

    There are also some command line tools that you can use to see inside of dll's, dumpbin in particular - check the MSDN help in visual studio for more information. You can run these tools from the command prompt in the Visual Studio start menu folder.

提交回复
热议问题