C#/.NET Little Wonders: TPL Wonders - The Parallel.For() Method

added by BlackRabbitCoder
10/20/2011 8:08:53 PM

162 Views

Previously, I had created some posts about the Task Parallel Library’s Concurrent Collections – which are very efficient collections designed for concurrent use with minimal contention – but in this next series of Little Wonders posts, I’d like to explore the parts of the TPL that can simplify and improve the way you perform parallel programming. For this week, we are going to start looking at the Parallel static class’s, For() static method, which is a quick and easy way to perform parallel processing over a range of number values.


0 comments