C#控制台:保持程序关闭直到代码完成?

时间:2014-03-22 19:37:02

标签: c# console

在所需方法执行完毕之前,如何让控制台应用程序关闭?

E.g。保持控制台关闭,直到所有客户端连接都已关闭,所有线程都已中止并且客户端侦听器已停止: http://pastebin.com/CnN5HeR9

1 个答案:

答案 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");

希望它能帮助:) 的雅斯尔