Debugging Mixed-Mode Applications

A mixed-mode application is any application that combines native code (C++) with managed code (such as Visual Basic, Visual C#, or C++ that runs on the common language runtime). Debugging mixed-mode applications is largely transparent in Visual Studio; it is not too different from debugging a single-mode application. There are a few special considerations, however.

Enable C++ Edit and Continue in Mixed Mode Debugging

Property Evaluation in Mixed-Mode Applications

In a mixed-mode application, the evaluation of properties by the debugger is an expensive operation. As a result, debugging operations such as stepping might appear slow. For more information, see Stepping. If you experience poor performance in mixed-mode debugging, you might want to turn off property evaluation in the debugger windows.

Note

The dialog boxes and menu commands you see might differ from those described in Help depending on your active settings or edition. To change your settings, choose Import and Export Settings on the Tools menu. For more information, see Customizing Development Settings in Visual Studio.

To turn off property evaluation

  1. On the Tools menu, choose Options.

  2. In the Options dialog box, open the Debugging folder and select the General category.

  3. Clear the Enable property evaluation and other implicit function calls check box.

Because native call stacks and managed call stacks differ, the debugger cannot always provide the complete call stack for mixed code. When native code calls managed code, you may notice some discrepancies. For more information, see Mixed Code and Missing Information in the Call Stack Window.

See Also

Other Resources

Debugging Managed Code