嵌套 using 语句
正如 Eric Gunnerson 在此博文中所示,在 C# 中,您可以将 using
语句嵌套为:
using (StreamWriter w1 = File.CreateText("W1"))
using (StreamWriter w2 = File.CreateText("W2"))
{
// code here
}
在 VB.Net 中是否有类似的方法?我想避免太多的缩进级别。
As Eric Gunnerson shows in this blog post, in C# you can nest using
statements as:
using (StreamWriter w1 = File.CreateText("W1"))
using (StreamWriter w2 = File.CreateText("W2"))
{
// code here
}
Is there a similar way to do it in VB.Net? I want to avoid too many indentation levels.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样:
Like this:
好吧,你可以这样做:
Well, you can do: