throw new Exception("Test");
只有投掷
我无法在那里收到我的文字......
我也试过
throw new ArgumentException("Test");
并使用try
catch
且没有。
但这是我写的窗口。
编辑: 我正在努力,所以投掷不可能。
答案 0 :(得分:1)
您需要catch
例外并提取要显示的消息。
try
{
//Your code here
}
catch(Exception e)
{
var message = e.Message;
MessageBox.Show(message);
}