I have a c# code which is calling another c# library which P/Invokes to a c++ library so it looks like following:
C# -> C#(P/Invoke) -> C++
I do have source code of both c# and c++ librarries. I am able to step into the c#(p/Invoke) code wince I am referring to the source code into my references.
However, c++ code is not easily compiled. I am referring to a DLL at this point. I want to be just able to step into the c++ code at run time so I can check for some internal logic.
Can resharper help me achieve this? Is there any way that I can do it in Visual studio?