原文地址:http://www.cnblogs.com/yinzixin/archive/2011/11/04/2235233.html .NET 4为了简化多线程编程,提供了System.Threading.Tasks命名空间中的类来帮助开发者进行多线程编程,其中,Task类用来表示一个线程.最简单的Task类接受一个Action委托作为要执行的方法,调用Start方法开始在另一个线程中运行.例如: using System; using System.Threading.Tasks; nam…