首页 > 代码库 > (29)C#多线程

(29)C#多线程

线程命名空间

using System.Threading;

 

创建线程对象

Thread thread = new Thread();

 

(29)C#多线程