Описание тега missingmethodexception

The .NET exception that is thrown when there is an attempt to dynamically access a method that does not exist.

Normally a compilation error is generated if code attempts to access a nonexistent method of a class. MissingMethodException is designed to handle cases where an attempt is made to dynamically access a renamed or deleted method of an assembly that is not referenced by its strong name. MissingMethodException is thrown when code in a dependent assembly attempts to access a missing method in an assembly that was modified.

MissingMethodException uses the HRESULT COR_E_MISSINGMETHOD, that has the value 0x80131513.

http://msdn.microsoft.com/en-us/library/system.missingmethodexception(v=vs.110).aspx

Sometimes MissingMethodExection occurs after upgrading a program and thus the assembly versions. These problems can be fixed by updating the App.config files. For an example see: MissingMethodException when migrating from F# 3.0 to F# 3.1