-1

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

谢谢你。

4

1 回答 1

0

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

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:糟糕,发生了一些不好的事情!

   在 c:\Sandbox Console\Program.cs:line 17 中的 Sandbox_Console.Program.Main(String[] args)
--------------------------
好的   
--------------------------

看看它如何在第 17 行显示发生了错误,您也可以将该信息保存到日志文件中以供以后阅读。

于 2013-07-18T03:28:49.627 回答