Try Catch 不执行 catch 语句中的所有代码行 C#

发布于 2024-10-25 08:39:04 字数 443 浏览 4 评论 0原文

我有一个 try-catch,我尝试使用 api 函数来处理一些第三方的东西,如果它不起作用,我会弹出一个消息框并设置一个标志。问题是,即使弹出消息框,该标志也没有设置。

我确实需要将 SkipThis 标志设置为 true,因为这个东西是在计时器的滴答事件上运行的,如果我不跳过它,将会不断弹出错误消息框!

try
{
    MachStatus.arUploadFromController();

}
catch (DMCException MyException)
{
    MessageBox.Show("Error#: " + MyException.DMCErrorCode + " - " + MyException.Message);
    SkipThis = true;
}

编辑:我通过将 SkipThis = true' 放在消息框行上方解决了这个问题。

I have a try-catch where I try to use an api function for some 3rd party stuff and if it doesn't work, I pop up a message box and set a flag. Problem is, the flag doesn't get set, even though the message box pops up.

I really need to set that SkipThis flag to true since this thing is running on the tick event of a timer and will keep popping up error message boxes if I don't skip it!

try
{
    MachStatus.arUploadFromController();

}
catch (DMCException MyException)
{
    MessageBox.Show("Error#: " + MyException.DMCErrorCode + " - " + MyException.Message);
    SkipThis = true;
}

EDIT: I solved this by putting the SkipThis = true' above the message box line.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文