摘要: from:http://topic.csdn.net/u/20090314/20/564e9211-bb5e-4570-b73c-4fcf30350a30.html 以下这2段多线程代码有什么区别,哪种能更好的异步执行第一段 Thread thread_copyormove = new Thread(new ThreadStart(ThreadMain)); thread_copyormove.IsBackground = true; thread_copyormove.Start();第二段 Thread thread_copyormove = new Thread(ThreadMain); 阅读全文
posted @ 2012-05-24 16:20 Yaoquan.Luo 阅读(363) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2012-05-24 16:01 Yaoquan.Luo 阅读(210) 评论(0) 推荐(0)