错误消息,但仍在调试
本文关键字:调试 消息 错误 | 更新日期: 2023-09-27 18:23:36
我没有这方面的代码。我的问题是,当我输入文本时出现错误,程序不再响应,我需要关闭程序并编辑我的代码。我想要的是,当出现错误时,会有这样的消息,说这部分代码是错误的,我不需要关闭程序。
谢谢。
您需要的是用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.
}
}
}
运行此程序时,会显示以下消息框
------------------------------------------------------系统异常:哎呀,发生了一些不好的事情!位于c:''Sandbox Console''Program.cs:line 17中的Sandbox_Console.Program.Main(String[]args)---------------------------好啊---------------------------
看看它如何在第17行显示发生了错误,您也可以将该信息保存到日志文件中以供以后读取。