vb.net – 嵌套使用语句

前端之家收集整理的这篇文章主要介绍了vb.net – 嵌套使用语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
正如Eric Gunnerson在 this博客文章中所示,在C#中,您可以使用语句嵌套:
using (StreamWriter w1 = File.CreateText("W1"))
using (StreamWriter w2 = File.CreateText("W2"))
{
    // code here
}

在VB.Net中有没有类似的方法呢?我想避免太多的缩进级别。

喜欢这个:
Using a As New Thingy(),_
      b As New OtherThingy()
        ...
End Using
原文链接:https://www.f2er.com/vb/256115.html

猜你在找的VB相关文章