Debugging unmanaged code while debugging managed code

后端 未结 3 2004
忘掉有多难
忘掉有多难 2020-12-15 18:23

The .NET 3.5 application I am working on consists of bunch of different solutions. Some of these solutions consist of managed code(C#) and others have unmanaged code(C++). M

3条回答
  •  一生所求
    2020-12-15 18:41

    1. Go to the Managed project property.
    2. Right click on it and go to the debug tab.
    3. There is a section called enable debugger under that section.
    4. Check the "Enable native code debugging" option

    then you will be able to debug the native code. Good luck !!!

    Please refer the below attached image highlighted with red rectangle.

提交回复
热议问题