i have a visual studio 2008, using c#
wanted to get parallel class.
added using System.Threading;
but no parallel class appears, can you help me to get it? thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are two issues here.
1) You need to be using .NET 4 with VS 2010, or download the Reactive Extensions for .NET (which includes a backported version of the TPL) in order to use the Parallel class.
2) As of .NET 4, beta 1, the Parallel class is now part of the System.Threading.Tasks namespace, not part of System.Threading. The Rx Framework also includes it here.