how to view DLL function/Interface using visual studio

Keep Open and Learning
Post Reply
jiataifeng
Posts: 178
Joined: 30 Apr 2009 06:31

how to view DLL function/Interface using visual studio

Post by jiataifeng » 20 Oct 2018 02:40

run vcvarsall.bat at X:\Microsoft Visual Studio 1X.0\VC\vcvarsall.bat or the nearby folder with the same bat file name.
or just open Visual Studio Command Prompt


dll: dumpbin /exports <dll_path> > 1.txt
lib: dumpbin /LINKERMEMBER sample.lib > 1.txt


for .net dll, try ILSpy here

Post Reply