I have a method1 which calls a method2 in a type that's resolved dynamically during run time. The type is resides in referenced assembly whose source I have. I put a breakpoint in method1 on the call on method2 and I have a breakpoint on method2 in its .cs file. I am using Visual Studio 2015 update 3 and Resharper. (I have CodeRush too).
I can't single step into method2 and I can't go to implementation of method2. The debugger single steps to the next line before single stepping into method2. ctrl-alt-click on method2 shows a "Implementations of method2 were not found". ctrl-click on method2 goes to its interface.
I was wondering how to break into method2 during debugging.