Taking a look at how we can simplify parallel programming by using the Task Parallel Library which is part of .Net 4.0 We will take a look at how to move your code away from for and foreach and towards Parallel.For and Parallel.Foreach. These new methods allow you to parallelize your loops w/ little effort, but with large gains.
0 comments