Parallel for loops in .NET C# z
时间:2014-05-22 15:59:26
收藏:0
阅读:264
- The start index: this is inclusive, i.e. this will be the first index value in the loop
- The end index: this is exclusive, so it won’t be processed in the loop
- An Action of int which represents the method that should be executed in each loop, where int is the actual index value
Parallel.For(0, 10, index => { Console.WriteLine("Task Id {0} processing index: {1}", Task.CurrentId, index); });
评论(0)