Try Catch 不执行 catch 语句中的所有代码行 C#
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论