原文地址:http://www.ggat.cn/newsInfo.html/128
private Thread t1 =null;void CreateThread(){ string x = "Hello,"; t1 = new System.Threading.Thread(delegate() { string y = "Closure!"; System.Console.Write(x+y); });}void DoThread(){ CreateThread(); t1.Start();}