MissingMethodException: how to understand in which assembly the method missing

52 Views Asked by At

Assembly "A.dll" depends on the "Do()" method in assembly "B.dll".

During execution, a MissingMethodException occurred in assembly "A.dll" because the method "Do()" was not found

How can I reliably determine which "B.dll" assembly .NET was trying to find a method in?

After all, he can try to search both in "B.dll" 1.0.0.0 and in "B.dll" 2.0.0.0

0

There are 0 best solutions below