Odd "System.MissingMethodException"

  • Thread starter Thread starter Kevin Hutchison
  • Start date Start date
K

Kevin Hutchison

I am getting this for one method calling another in the same class. The
class builds well, but when run throws this exception. (Not P/Invoke, Not
Delegate) Anyone ever see this? I could post the code, but since it builds
without warning or error ...

Meantime, if I find the solution I'll post the answer as FYI.

- K.
 
I had this exception thrown some time when in fact I had a
StackOverflowException ..
 
Turns out, it was more obvious than that. Although an assembly was
referenced and marked "copy" local, it wasn't being deploed and truly was a
MissingMethod.

When I recreated the project in VS, everything worked fine.

- K.
 
Back
Top