.NET 4.0 has the TPL which contains the nice Task class to encapsulate aynchronous programming models. I\'m working on an app that must be .NET 2.0, but I want to avoid rew
You will have to use System.Threading.Thread class, you can get the Task class for .net 3.5 but not for .net 2.
System.Threading.Thread
Task
Sorry