1

これは、NUnitテストの1つにあります。R#を使用してテストを進めています。そのforeachループの内容を表示するためにコンソールウィンドウがポップアップしていません...何が欠けているのかわかりませんが、はい、ループするためのデータがあるので、ここにデータがないわけではありません

foreach (PostEntry post in posts)
{
    Console.WriteLine("id: " + post.Id);
    Console.WriteLine("title: " + post.Title);
    Console.WriteLine("body: " + post.Body);
    Console.ReadLine();
}
4

1 に答える 1

4

クラス ライブラリで作業していて、各ループの内容を確認したい場合 System.Diagnostics.Debug.Writeは、Console.WriteLine の代わりに使用できます。出力は、出力ウィンドウに表示されます。

foreach (PostEntry post in posts)
{
    System.Diagnostics.Debug.WriteLine("loop starts");
    System.Diagnostics.Debug.WriteLine("id: " + post.Id);
    System.Diagnostics.Debug.WriteLine("title: " + post.Title);
    System.Diagnostics.Debug.WriteLine("body: " + post.Body);
    System.Diagnostics.Debug.WriteLine("loop ends");
    System.Diagnostics.Debugger.Break();
}
于 2012-12-09T05:15:49.513 に答える