views:

1401

answers:

5

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

+4  A: 

This is exactly what the Object Browser is for.

  • Add a reference to the DLL.
  • Right click it in the list.
  • Click View in Object Browser.
Rob Cooper
+1  A: 

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.

Daemin
A: 

Outside of Visual Studio, you can use a dependency tool which is able to inspect DLL and EXE imports and exports, it integrates with the shell and is very easy to use. It comes with some Microsoft SDKs. If you want to avoid the hassle of downloading and installing SDK just because of this, easy download links for all 32b/64b platforms are available at http://www.dependencywalker.com/

Microsoft documentation (no download) is available at MicroSoft Technet

Similar functionality is also available in SysInternals Process Explorer - best suited when inspecting running processes.

Suma
A: 

There's also the DLL export viewer if you don't have VS installed on a machine.

Thorsten79
Link does not work for me.
Suma
I checked. The link should work.
Thorsten79
+3  A: 

If the DLL is a .NET assembly you might want to take a look at Reflector for a more detailed view.

Gary Willoughby
I have used this, it is excellent!
xan