I am getting a "Method not found: 'Boolean MyCompany.LibraryAssembly.SomeFunction(System.String)'" exception/error when running a VB.NET console application.
The method is part of an external assembly and it is definitely in the assembly. The error only occurs at runtime when I go to enter the function that calls the method.
I have the assembly referenced by my project and I am not copying it locally. Intellisense shows no errors, and neither does the compiler. I am loading the assembly statically not dynamically.
I reference the from a local folder (not the GAC) although the same version is also available from the GAC.
Any suggestions as to what I might check?