会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
To be simple
Everything should be made as simple as possible, but no simpler.
管理
2008年1月16日
微软.Net开发中的多线程编程总结-转
摘要: 本文将对微软.Net开发中的多线程编程进行一个简单的总结,相信对大家会有所帮助的。下面就具体来看看: 不需要传递参数,也不需要返回参数 我们知道启动一个线程最直观的办法是使用Thread类,具体步骤如下: ThreadStart threadStart=new ThreadStart(Calculate); Thread thread=new Thread(threadStart); ...
阅读全文
posted @ 2008-01-16 16:34 彷徨......
阅读(377)
评论(1)
推荐(0)
编辑