How to debug unmanaged C++ dll in C#
0. Environment
Windows 8 x64 Enterprice
Visual Studio 2010 x86
1. Problem
We know how to call C++ dll in our C# code in my article Using C++ dll in C# code
But how to debug the C++ code? That's really very important.
2. Solution
2.1 Put your C++ dll project and C# project in the same solution
2.2 In your C# project
Right click C# project -> Properties -> Debug -> Enable Debuggers -> Enable unmanaged code debugging
3. Reference
http://leecky.blog.sohu.com/36904706.html
(This article is from http://www.cnblogs.com/chenyineng/archive/2013/01/11/2856081.html, and belongs to http://chenyineng.cnblogs.com and http://www.chenyineng.info)