c# - Visualization using Parallel methods -
i using parallel.foreach loop issue requests in parallel. wanted know if there way see visually happening behind scenes when these requests issued? ( way see being issued in parallel).
i using vs 2010
you can write test prints in each requests.
something like...
console.writeline("start request."); console.writeline("processing xxx"); console.writeline("finishing request.");
this way can see outputs while program running. can print out timestamps desired.
Comments
Post a Comment