How to find wich method is missing with a MissingMethodException?

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

Hi All,

I have a class library, which i use in an application. Now when i create a
class thats inside the library i get a MissingMethodException. How can i
tell which method is actually missing or what causes the error?

Richard.
 
Step through it with the debugger. You don't get the Exception until the
method is actually called so it should be easy to find.

-Chris
 
Back
Top