SuperBug

博客园 首页 联系 订阅 管理

2012年6月14日

摘要: using System;using System.Collections.Generic;using System.Text;using System.Threading;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Thread newThread = new Thread(test); newThread.Start("para input"); newThread =... 阅读全文
posted @ 2012-06-14 17:31 SuperBug 阅读(214) 评论(0) 推荐(0) 编辑

摘要: using System;using System.Threading;class Test{ static void Main() { // To start a thread using a static thread procedure, use the // class name and method name when you create the ThreadStart // delegate. Beginning in version 2.0 of the .NET Framework, // it is no... 阅读全文
posted @ 2012-06-14 16:40 SuperBug 阅读(281) 评论(0) 推荐(0) 编辑