I heard that the Task Parallel Library can be used in a .Net 3.5 project. Is this correct, and if yes, how do I use it? In .Net 4.0, it resides in System.Threading, but when I select .Net 3.5 as the target in Visual Studio 2010, I don't get access to classes like Parallel and the Parallel loops.

link|improve this question

feedback

3 Answers

up vote 19 down vote accepted

You can't use the full Parallel Extensions, no...

... but if you install Reactive Extensions for .NET 3.5, that comes with a version of Parallel Extensions, so you can use that. I don't know how much of PFX is supported, but I suspect there's enough for most people. (There are some details in the blog post, but that was from 2009... I don't know about any changes in 2010 which may or may not have been backported.)

Note that this is unsupported, too - probably fine for hobby projects, but if I wanted to use PFX commercially, I'd upgrade to .NET 4.

link|improve this answer
If installing something else is a requirement, I think I'd install the .NET Framework 4 altogether. – zneak Jun 7 '10 at 6:29
3  
@zneak: In some situations you may have the option of deploying another library, but not upgrading the framework version. – Jon Skeet Jun 7 '10 at 6:47
Works a charm, thank you! @zneak: I have .Net 4.0 installed, the problem is that I need to work with a component which can talk to .Net dlls, but up to .Net 3.5 only. – Mathias Jun 11 '10 at 18:59
Most recent version with System.Threading.dll: stackoverflow.com/questions/6891787/… – user423430 Oct 12 '11 at 21:47
feedback

Simply put: you can't. In doubt, check the MSDN page (which clearly states this is available from the .NET Framework 4).

Features accessible from C# can actually have (at least) three origins: CLR features, .NET Framework features, and compiler features. There's a distinction to do here. Compiler features (like the var keyword) can be used with older .NET Framework targets because they're independant of it. However, features that rely on the runtime (like the dynamic) require a certain version of the CLR to work. The same goes for the framework: if you see something new in the framework, then it surely requires at least this version of the framework.

link|improve this answer
4  
I'm using Task Parallel Library June'08 CTP in my 3.5 application. – Vasiliy Borovyak Jun 7 '10 at 8:52
feedback

As Jon Skeet mentioned, Rx backported TPL to .NET 3.5.

I have made a nuget (called TaskParallelLibrary) out of their System.Threading.dll, for easier integration.

You can get it from http://nuget.org/packages/TaskParallelLibrary.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.