using
Thread thread=new Thread(new ThreadStart(method));//创建线程
thread.Start(); //启动线
本文介绍了一种使用ThreadStart委托创建并启动线程的方法。通过实例演示了如何定义线程方法,创建线程对象,并调用Start方法启动线程。
using
Thread thread=new Thread(new ThreadStart(method));//创建线程
thread.Start(); //启动线
1771

被折叠的 条评论
为什么被折叠?