您的位置:首页 > 编程语言 > C语言/C++

How to debug unmanaged C++ dll in C#

2013-01-11 11:22 639 查看
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)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: