блоки.

тим, у нас есть такая структура:

Try
  ' Outer try code, that can fail with more generic conditions, 
  ' that I know less about and might not be able to handle

  Try
    ' Inner try code, that can fail with more specific conditions,
    ' that I probably know more about, and are likely to handle appropriately
  Catch innerEx as Exception
    ' Handle the inner exception
  End Try

Catch outerEx as Exception
  ' Handle outer exception
End Try

Я видел некоторые мнения, что вложенностьTry блоки, как это, не рекомендуется, но я не мог найти каких-либо конкретных причин.

Это плохой код? Если так, то почему?

Ответы на вопрос(2)

Ваш ответ на вопрос