线程:
//一个线程也可以使用它的Join方法来等待另一个线程结束: Thread t = new Thread (Go); // Assume Go is some static method t.Start(); t.Join(); // Wait (block) until thread t ends