我想知道将一个异常从一个方法传递给我的表单的正确方法是什么。
public void test()
{
try
{
int num = int.Parse("gagw");
}
catch (Exception)
{
throw;
}
}
形式:
try
{
test();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
以这种方式我看不到我的文本框。
答案 0 :(得分:14)
如果您只想使用例外摘要:
try
{
test();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
如果要查看整个堆栈跟踪(通常更适合调试),请使用:
try
{
test();
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
我有时使用的另一种方法是:
private DoSomthing(int arg1, int arg2, out string errorMessage)
{
int result ;
errorMessage = String.Empty;
try
{
//do stuff
int result = 42;
}
catch (Exception ex)
{
errorMessage = ex.Message;//OR ex.ToString(); OR Free text OR an custom object
result = -1;
}
return result;
}
在您的表单中,您将拥有类似的内容:
string ErrorMessage;
int result = DoSomthing(1, 2, out ErrorMessage);
if (!String.IsNullOrEmpty(ErrorMessage))
{
MessageBox.Show(ErrorMessage);
}
答案 1 :(得分:1)
有很多方法,例如:
方法一:
public string test()
{
string ErrMsg = string.Empty;
try
{
int num = int.Parse("gagw");
}
catch (Exception ex)
{
ErrMsg = ex.Message;
}
return ErrMsg
}
方法二:
public void test(ref string ErrMsg )
{
ErrMsg = string.Empty;
try
{
int num = int.Parse("gagw");
}
catch (Exception ex)
{
ErrMsg = ex.Message;
}
}
答案 2 :(得分:0)
try
{
// your code
}
catch (Exception w)
{
MessageDialog msgDialog = new MessageDialog(w.ToString());
}