摘要: ThreadStart不需要传递参数,也不需要返回参数 我们知道启动一个线程最直观的办法是使用Thread类,具体步骤如下:实例代码: ThreadStart threadStart=new ThreadStart(Calculate); Thread thread=new Thread(threadStart); thread.Start(); public void Calculate() { double Diameter=0.5; Console.Write("The Area Of Circle with ... 阅读全文
posted @ 2012-11-30 17:14 DaBan 阅读(283) 评论(0) 推荐(0) 编辑