C#中使主线程等待子线程的方法
更新:HHH   时间:2023-1-7


使用线程的Join方法:

                Thread th = new Thread(Search);
                th.Start();
                th.Join();
返回编程语言教程...