TypeLoadException Error

  • 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.
..
 
When you run it in the debugger, where does the program stop when the
exception is thrown?

Paul T.
 
The post below would be the best way to find out which class caused the
typeloadexception. However, you can use the tool called "depends" to find
out which dll dependecies your exe has and then maybe use ildasm to find
which classes in those dlls.

Sandy


From: "Paul G. Tobey [eMVP]" <ptobey_no_spam@instrument_no_spam.com>
Subject: Re: TypeLoadException Error
Date: Tue, 13 Jan 2004 12:08:41 -0700
Newsgroups: microsoft.public.dotnet.framework.compactframework

When you run it in the debugger, where does the program stop when the
exception is thrown?

Paul T.

Isaac Alexander 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.
.




This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top