如何在 C++ 中的 Visual Studio 11 中打印到控制台/日志在 Metro 应用程序中?
我试图弄清楚如何在 Visual Studio 11 C++ Metro 应用程序中打印到调试器控制台/日志。我尝试了多种方法来打印到 C++ Metro 应用程序中的日志(cout、Windows.System.Diagnostics、MSDN 上的文档和 Metro 开发站点)。
如何打印到控制台?
I am attempting to figure out how to print to the debugger console/log in a Visual Studio 11 C++ Metro app. I have tried a number of methods to print to the log in a C++ Metro application (cout, Windows.System.Diagnostics, the documentation on MSDN and the Metro development site).
How do I print to the console?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OutputDebugString
:某些 Windows API 可从 Metro 风格应用程序中使用,包括此函数。您可以从 Metro 风格应用程序中找到与诊断相关的其他 Windows API 函数的列表 在 Windows 开发中心。
OutputDebugString
:Some of the Windows API is usable from a Metro style app, including this function. You can find a list of other diagnostic-related Windows API functions available from Metro style apps on the Windows Dev Center.