tool to inspect dlls

  • Thread starter Thread starter news.austin.rr.com
  • Start date Start date
N

news.austin.rr.com

Hi,

What is the name of the tool that allows me to inpect dlls to check method
signatures I cant find it.
 
It's depends.exe

If you have evc++ you should find it here:-
C:\Program Files\Microsoft eMbedded C++ 4.0\Common\Tools
or here if you have C++ installed with VS2003:-
C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\Bin

Peter
 
One of them is called Object Browser. Add a reference to the dll in Visual
Studio and go to View->Object Browser

If you are interested in more than signatures there are a bunch of
decompilers e.g. Anakrino or a commercial one like Salamander. You'll have
one on your PC called ILDASM.exe (only shows IL not high level language)

Cheers
Daniel
 
I hope you are refreing to Assemblies by saying dll's
1) You can use ILDASM.exe
2) You can also you Reflector

In case you are referring to DLL's then
1) You may use DLViewer from Borland
 
Back
Top