Windowsストアアプリケーションでは、次を使用できます:
System.Diagnostics.Debug.WriteLine("Test");
ただし、に置き換えるDebug
とTrace
次のエラーが発生します:CS0103: The name 'Trace' does not exist in the current context
どうすれば修正できますか?
Windowsストアアプリケーションでは、次を使用できます:
System.Diagnostics.Debug.WriteLine("Test");
ただし、に置き換えるDebug
とTrace
次のエラーが発生します:CS0103: The name 'Trace' does not exist in the current context
どうすれば修正できますか?
WinRT には Trace がなく、トレース リスナーがありません。メトロDebug.WriteLine
ログのようなサードパーティに頼らずにできる最善の方法です。
あなたの問題があなたを参照している既存のコードがたくさんある場合は、次のようにTrace.
エイリアスすることができますDebug
Trace
using Trace = System.Diagnostics.Debug;