标签:
线程:
//一个线程也可以使用它的Join方法来等待另一个线程结束: Thread t = new Thread (Go); // Assume Go is some static method t.Start(); t.Join(); // Wait (block) until thread t ends
小知识点
原文地址:http://www.cnblogs.com/suanshun/p/4988859.html