我有一个 C# 命令行程序,我用 try-catch 块包装了它,以防止它崩溃控制台。但是,当我调试它时,如果在 DoStuff() 方法的某处抛出异常,Visual Studio 将在“catch”语句上中断。我希望 Visual Studio 中断发生异常的位置。最好的方法是什么?
注释掉试试?
Visual Sudio 中的设置?
#if DEBUG 语句?
static void Main(string[] args)
{
try
{
DoStuff();
}
catch (Exception e)
{ //right now I have a breakpoint here
Console.WriteLine(e.Message);
}
}
private void DoStuff()
{
//I'd like VS to break here if an exception is thrown here.
}