抛出新异常("Test");不扔我的文字
throw new exception("Test"); does not throw my text
throw new Exception("Test");
仅投掷
我无法在其中获取我的文本...
我也试过了
throw new ArgumentException("Test");
有 try
catch
没有
但是 window.
是我的书面投掷
编辑:
我正在努力解决问题,所以 throw 是不可能的。
您将需要catch
异常并提取要显示的消息。
try
{
//Your code here
}
catch(Exception e)
{
var message = e.Message;
MessageBox.Show(message);
}
throw new Exception("Test");
仅投掷
我无法在其中获取我的文本...
我也试过了
throw new ArgumentException("Test");
有 try
catch
没有
但是 window.
是我的书面投掷编辑: 我正在努力解决问题,所以 throw 是不可能的。
您将需要catch
异常并提取要显示的消息。
try
{
//Your code here
}
catch(Exception e)
{
var message = e.Message;
MessageBox.Show(message);
}