嵌套使用块

发布于 2024-11-30 12:14:36 字数 245 浏览 1 评论 0原文

我知道我们可以在 using 块中创建多个相同类型的实例!但是有没有一种方法可以让不同类型的实例嵌套或写入单个 using 块中?

我刚刚读到这篇文章,到目前为止这似乎是唯一的选择 http://blogs.msdn.com/b/ericgu/archive/2004/ 08/05/209267.aspx

I knew we could create more than one instance of the same type in a using block! but is there a way i could have different types instances nested or written in a single using block?

i just read this, so far it seems the only option
http://blogs.msdn.com/b/ericgu/archive/2004/08/05/209267.aspx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半岛未凉 2024-12-07 12:14:36

在同一个 using 语句中不可能有不同声明类型的变量。 C# 规范将有效构造集限制为单个表达式或局部变量声明。后者在 C# lang 规范的第 8.5.1 节中进行了介绍,并且仅提供单个变量类型

local-variable-declaration:
  local-variable-type local-variable-declarators

要支持不同的局部变量类型,您需要使用某种形式的嵌套。例如

using (Type1 local1 = new Type1(), local2 = new Type1())
using (Type2 local3 = new Type2(), local4 = new Type2())
{

}

It's not possible to have variables of different declared types in the same using statement. The C# spec limits the set of valid constructs to a single expression or a local variable declaration. The latter is covered in section 8.5.1 of the C# lang spec and only provides for a single variable type

local-variable-declaration:
  local-variable-type local-variable-declarators

To support different local variable types you need to use some form of nesting. For example

using (Type1 local1 = new Type1(), local2 = new Type1())
using (Type2 local3 = new Type2(), local4 = new Type2())
{

}
沫离伤花 2024-12-07 12:14:36

不,它类似于以下内容:

int a, b;

a 和 b 都是 int - 就是这样。

No. It is similar to the following:

int a, b;

Both a and b are int - that is it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文