Asynchronous ForEach (Part 2)
I wrote about creating an asynchronous ForEach method before. Apparently, there is a going to be a TPL (Task Parallel Library) available that will do the same type of functionality (and more I am sure)
Parallel.For(0, 100, delegate(int i) { a[i] = a[i]*a[i]; });
Technorati Tags: Development, Performance
No comments:
Post a Comment