.NET Class Sniffer

I

Isaac Alexander

I am brand new to .NET. Is there a tool that will look a
compiled .NET application and return a list of the
classes it references. The reason for this is because I
am trying to make a simple app for Pocket PC .NET and I
am getting a TypeLoadException error.
 
M

mikeb

Isaac said:
I am brand new to .NET. Is there a tool that will look a
compiled .NET application and return a list of the
classes it references. The reason for this is because I
am trying to make a simple app for Pocket PC .NET and I
am getting a TypeLoadException error.

ILDASM.exe, which is part of the .NET Framework SDK, so you should
already have it.

Also, Lutz Roeder's Reflector is a great tool:

http://www.aisto.com/roeder/dotnet/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top