当程序终止时,如何使Visual Studio不关闭终端窗口?

时间:2014-05-01 03:49:30

标签: debugging visual-studio-2012 return terminate

在调试模式下运行时,有没有其他方法可以在Visual Studio中关闭终端窗口?我知道我可以“cin>>垃圾;”让它等待输入,并且我可以设置一个断点,但这些只是两种方式吗?看起来调试编译器设置中应该有一个设置,但我可以在其上找到任何内容。有谁知道吗?

1 个答案:

答案 0 :(得分:1)

简单的解决方案是自己动手:

public void Main(){
    try {
        // Do your thing
    }
    catch (Exception ex) {
        Console.WriteLine(ex);
    }
    finally {
        Console.Write("ENTER to exit: ");
        Console.ReadLine();
    }
}