小知识点

线程:

//一个线程也可以使用它的Join方法来等待另一个线程结束:

Thread t = new Thread (Go);           // Assume Go is some static method
t.Start();
t.Join();                             // Wait (block) until thread t ends
原文地址:https://www.cnblogs.com/suanshun/p/4988859.html