Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I debug a native code project from inside a managed code project? I am using C# to call C++ code and need to debug the C++ code. Otherwise, I must exit out of the project, open the C++ project, create a tester and then debug the code. This is horrible.

share|improve this question
Here is the answer to your question -stackoverflow.com/questions/57840/… – Ramhound Jul 18 '11 at 19:12
You can't have two projects open at once, in two different IDE windows? – JAB Jul 18 '11 at 19:12

2 Answers

up vote 6 down vote accepted

Add your c++ project to the solution containing your C# code

In the C# project properties pages, under the debug tab

Check "Enable unmanaged code debugging"

share|improve this answer
1  
And set a breakpoint on the C++ code you want to debug. – Hans Passant Jul 18 '11 at 19:14
I did this and then it told me that I couldn't debug on the current platform... – Storm Kiernan Jul 18 '11 at 19:27
Specifically: The debugger does not support debugging managed and native code at the same time on this platform. – Storm Kiernan Jul 18 '11 at 19:31
1  
@Storm: Try debugging the x86 version first, use the 64-bit debugger only for problems you can't reproduce in 32-bit. – Ben Voigt Jul 18 '11 at 19:39
@Ben Voigt: I put all my target types to x86 and nothing changed. – Storm Kiernan Jul 18 '11 at 20:22

In the debugging options for visual studio you HAVE to specify the correct debugger type.

Open up the property dialog window for the project, and under the Configuration Properties select Debugging. For the Debugger Type option, select the property that applies:

This can be auto, or mixed. I prefer mixed as it is explicitly stating you want both managed and native debugging.

As a side note, you can pick native only, but you won't be able to set a breakpoint in managed code. I'm not sure if this is an issue for you or not.

If you pick managed only, you obviously won't hit any breakpoints in native code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.