.NET Class Sniffer

  • Thread starter Thread starter Isaac Alexander
  • Start date Start date
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.
 
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/
 
Back
Top