摘要: //启动线程 thread = new Thread(new ThreadStart(HelloWorld)); thread.Start(); protected void HelloWorld() { string str ; Console.write("helloworld"); } } //杀死线程 if ( thread.IsAlive ) { thread.Abort... 阅读全文
posted @ 2007-08-27 18:03 RobotTech 阅读(526) 评论(0) 推荐(0) 编辑