2012-07-04 46 views

回答

4

metro風格的應用程序不能有控制檯。您可以在C++/CXX應用程序中使用OutputDebugString()在Visual Studio輸出窗口上顯示調試文本,就像System.Diagnostics.Debug.Write在託管應用程序中所做的一樣。有沒有很多批准的winapi函數,但OutputDebugString()沒問題。從MSDN頁面is here開始。

+0

in c#System.Diagnostics.Debug.Write其工作正常.. – Narasimha

+0

在Metro應用程序中沒有System :: Diagnostics命名空間: – RelativeGames

0

如果你正在創建一個GUI應用程序,你可以自己啓用控制檯。

AllocConsole(); 
freopen("CONOUT$", "w+t", stdout); 

然後,你可以簡單的std :: cout或printf你的診斷信息。

相關問題