How to print to Visual Studio 11 console / magazine in C ++ in a Metro application?

I am trying to figure out how to print on the debugger console / in a Visual Studio 11 C ++ Metro application. I tried several methods for printing in a magazine in a C ++ Metro application (cout, Windows.System.Diagnostics, documentation on MSDN and the Metro development site).

How to print on the console?

+4
source share
1 answer

OutputDebugString :

Sends a string to the debugger for display.

Some of the Windows APIs can be used from the Metro style app, including this feature. You can find a list of other diagnostic-related Windows API functions available from Metro style apps in the Windows Dev Center.

+7
source

Source: https://habr.com/ru/post/1394314/


All Articles