2013年1月8日

C#多线程

摘要: C#里面创建多线程,使用“Thread”类。假设Do方法有一个string参数,那么就要使用“ParameterizedThreadStart”进行实例化,详细如下。 Thread th = new Thread(new ParameterizedThreadStart(Do)); th... 阅读全文

posted @ 2013-01-08 17:34 [CC] 阅读(300) 评论(0) 推荐(0) 编辑

导航