1

Recently i start to learn about parallel programming. In that i like to apply parallel for so i need System.Threading.Tasks namespace. Now i am using Visual Studio 2010 Express edition. Is this option available in that edition?I tried in this edition but it not come.but i used another option of .netframework like ZIP method in that same edition.

ratty
  • 12,122
  • 29
  • 69
  • 105

4 Answers4

2

The namespace was introduced in the .NET 4.0 framework, so unless you target an earlier framework, it will be available.

Oded
  • 463,167
  • 92
  • 837
  • 979
2

Yes. It's avaiable in all versions of Visual Studio 2010, because it it part of the .NET-Framework

sloth
  • 91,747
  • 17
  • 156
  • 204
1

you can use system.threading.tasks but with Visual Studio Express there is no support for multi-thread debugging i believe

stack72
  • 7,930
  • 1
  • 29
  • 34
0

Yes. It is part of the .Net 4 framework.

Neil Knight
  • 44,112
  • 23
  • 121
  • 184