gpt4 book ai didi

c# - 出现异常时显示消息框

转载 作者:太空狗 更新时间:2023-10-29 19:58:23 27 4
gpt4 key购买 nike

我想知道将异常从一种方法传递到我的表单的正确方法是什么。

public void test()
{
try
{
int num = int.Parse("gagw");
}
catch (Exception)
{
throw;
}
}

表格:

try
{
test();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

这样我就看不到我的文本框了。

最佳答案

如果您只需要异常的摘要,请使用:

    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);
}

关于c# - 出现异常时显示消息框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18823668/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com