Is there a tool to see what classes and properties a dll has?
Kevin Spencer - 31 Oct 2005 20:39 GMT
Yes. Do you have Visual Studio.Net? It's the Object Browser.

Signature
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
A watched clock never boils.
> Is there a tool to see what classes and properties a dll has?
Scott Allen - 31 Oct 2005 20:43 GMT
If the dll is a manged dll, you can use Reflector:
http://www.aisto.com/roeder/dotnet/
If the dll is a native dll, DUMPBIN is a good start:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/_co
re_dumpbin_reference.asp
--
Scott
http://www.OdeToCode.com/blogs/scott/
>Is there a tool to see what classes and properties a dll has?
VJ - 31 Oct 2005 20:58 GMT
Absolutely! You can use ILDASM.EXE to look at managed assemblies, although at
first the information would be overwhelming.
> Is there a tool to see what classes and properties a dll has?