如何使用Try and Catch在VB.Net中重试操作?

前端之家收集整理的这篇文章主要介绍了如何使用Try and Catch在VB.Net中重试操作?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从一个文件中读取,如果我失败了,让用户重试或以其他方式放弃.到目前为止代码看起来像这样:
Read_Again:
    Try
        my_stream.Read(buffer,read_len)
    Catch ex As System.IO.IOException
        If MessageBox.Show("try again?") = DialogResult.Retry Then
            GoTo Read_Again
        Else
            Application.Exit() 'just abort,doesn't matter
        End If
    End Try

我不喜欢Goto,这很难看.但我不知道如何制作一个跨越try和catch的循环.

有没有更好的方法来写这个?

Dim retry as Boolean = True
While retry
   Try
      my_stream.Read(buffer,read_len)
      retry = False
   Catch ex As System.IO.IOException
       If MessageBox.Show("try again?") = DialogResult.Retry Then
           retry = True
       Else
           retry = False
           Application.Exit() 'just abort,doesn't matter
       End If
   End Try
End While
原文链接:https://www.f2er.com/vb/255316.html

猜你在找的VB相关文章