I'm debugging my C# unity code through visual studio, and I would like to step into my native C++ code. From C#, I am loading my native c++ plugin using the LoadLibrary function.
I can:
How to step into a native C++ dll in Visual Studio?
Code (CSharp):
- [DllImport("kernel32.dll")]public static extern IntPtr LoadLibrary(string dllToLoad );
- Debug my C# code
- Load my C++ dll
- Call my C++ dll functions
- Stepping into my C++ dll functions
- Seeing my C++ dll in Visual Studio's...
How to step into a native C++ dll in Visual Studio?