Debugging c++ code with Interoperability

R

Ronny

I work with VS2005.
I managed to add to my C# solution a C++ MFC regular dll project. I added
win32 functions and managed to export them to the c# code and call them with
the interoperability maechanism.
Trying to debug the unmanaged code I saw that I simply jump across it and
never jump into it.
Is there a way to do it?
Regards
Ronny
 
A

Adam Benson

Try right clicking on your project and calling up the project properties. Go
to the debug tab.

There should be a tick box marked "Enable unmanaged code debugging" Select
it.

I should add that I've only ever done in this in VS 2003 and VS 2008 so it
may be slightly different for VS 2005 (which we just hopscotched over.)

HTH,

Adam.
========
 
R

Ronny

thanks Adam,
I tried to follow your advise but I couldn't find it. Either I miss
something or it is simple not supported.
Regards
Ronny
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top