Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debug Managed and Unmanaged code together

My main startup project is in c++. the solution involves also managed c# code. When I debug - I have breakpoints only on the unmanaged sections (on managed breakpoint it states : "The breakpoint will not currently be hit. invalid file line "

I checked the reference and saw that there is dll and pdb there.

What could it be?

like image 554
Eyal Avatar asked Jan 19 '23 15:01

Eyal


1 Answers

how to set mixed-mode debugging http://msdn.microsoft.com/en-us/library/kbaht4dh(v=vs.100).aspx

And don't miss the link in the bottom.

like image 138
MajesticRa Avatar answered Jan 27 '23 20:01

MajesticRa