示例#1
0
文件: thread.cs 项目: ASMlover/study
 static void Main(string[] args)
 {
     Thread t = new Thread(() => {
       // do somthing of thread
       });
       t.start();
       t.Join();
 }