programing

문을 사용하여 중첩됨

powerit 2023. 6. 7. 23:22
반응형

문을 사용하여 중첩됨

Eric Gunnerson이 이 블로그 게시물에서 보여주듯이 C#에 둥지를 틀 수 있습니다.using다음과 같은 문장:

using (StreamWriter w1 = File.CreateText("W1"))
using (StreamWriter w2 = File.CreateText("W2"))
{
    // code here
}

VB에서도 비슷한 방법이 있습니까?네트? 너무 많은 들여쓰기 수준을 피하고 싶습니다.

다음과 같이:

Using a As New Thingy(), _
      b As New OtherThingy()
        ...
End Using

할 수 있는 것은 다음과 같습니다.

Using w1 = File.CreateText("W1"), w2 = File.CreateText("W2")
    ' Code goes here. '
End Using

언급URL : https://stackoverflow.com/questions/3345303/nested-using-statements

반응형