Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Parallel.Foreach 循环并行发出请求。我想知道在发出这些请求时是否有办法直观地看到幕后发生的事情?(一种查看它们实际上是并行发布的方法)。
我正在使用 VS 2010
您可以在每个请求中编写一些测试打印。
就像是...
Console.WriteLine("Start request."); Console.WriteLine("Processing XXX"); Console.WriteLine("Finishing request.");
这样您就可以在程序运行时看到输出。您还可以打印出所需的时间戳。