typeinitializationexception in module

  • Thread starter Thread starter Emilio Martin
  • Start date Start date
E

Emilio Martin

Hi,

I'm getting a system.typeinitializationexception when referencing a module.

The problem only oocurs in my deployed program, not on in my development
environment.

Any Ideas?

Many Thanks
 
Sorry let me expand on that..

It links to a specified module not found error.

The module is a simple module that is called when the projects main form
loads.
 
TypeInitializationException is thrown if something has gone wrong in type
initialization. Well if your constructor is calling lots of other things,
and one of them throws an exception, the constructor will throw a
typeInitializationException with the main exception set as inner exception.

--Saurabh
 
Back
Top