错误消息但仍在调试

时间:2013-07-18 02:41:16

标签: c# visual-studio-2008

我没有这个代码。我的问题是,当我输入文本有错误时,程序不再响应,我需要关闭程序并编辑我的代码。我想要的是当有有错误的消息会说这部分代码是错误的,我不需要关闭程序。

谢谢。

1 个答案:

答案 0 :(得分:0)

您需要的是使用try-catch块捕获execption并将错误保存到日志或在屏幕上显示

class Program
{
    static void Main(string[] args)
    {
        try
        {
            throw new Exception("Oops, somthing bad happened!"); //This is line 17
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.ToString());
            //throw; //If you don't have this the code will continue executing after this point.
        }
    }
}

运行此程序时,将显示以下消息框

---------------------------

---------------------------
System.Exception: Oops, somthing bad happened!

   at Sandbox_Console.Program.Main(String[] args) in c:\Sandbox Console\Program.cs:line 17
---------------------------
OK   
---------------------------

查看第17行显示的错误,您可以将该信息保存到日志文件中以供日后阅读。