How to achieve parallel computing process in C# 4.0.
+2
A:
All of the parallelization options in .NET 3.5 will exist in C# 4.0.
However, the Task Parallel Library will be moved into System.Threading directly as part of the BCL. This will allow constructs like Parallel.For loops, using the new TaskScheduler, etc.
Also, PLINQ will be included in the BCL in .NET 4, which allows for parallel queries to be run.
Reed Copsey
2009-04-21 16:44:13
A:
You can play with the Task Parallel Library on VS 2008 by downloading the CTP here:
Or you can try the Dev 10 beta here if you're an MSDN subscriber:
[see comment SO thinks I'm a spammer]
There are changes between the two versions in terms of namespaces and some APIs have been tweaked but either will get you started.
Ade
Ade Miller
2009-07-07 23:20:56
Ade Miller
2009-07-07 23:21:02