会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Sue_娜
没有人比自己更在乎自己的梦,有梦就有希望....
首页
管理
2010年9月16日
C#线程
摘要: private Thread t; public Form1() { InitializeComponent(); ThreadStart ts = new ThreadStart(Do); t = new Thread(ts); t.Start(); timer1.Start(); } public void Do() { while (true) { Timer tm = new System...
阅读全文
posted @ 2010-09-16 17:24 Sue_娜
阅读(137)
评论(0)
推荐(0)
编辑