在所需方法执行完毕之前,如何让控制台应用程序关闭?
E.g。保持控制台关闭,直到所有客户端连接都已关闭,所有线程都已中止并且客户端侦听器已停止: http://pastebin.com/CnN5HeR9
答案 0 :(得分:0)
如果您使用主题,则可以执行此操作
Thread th=new Thread(SomeMethod);
th.Start();
th.Join();//<-------------- this will make the console wait this thread until it end execution then proceed to the next instruction
Console.WriteLine("Thread Has Exited");
希望它能帮助:) 的雅斯尔强>