Can you name C# 7 Tuple items inline?(你能命名 C# 7 Tuple 内联项吗?)
问题描述
默认情况下,使用 C# 7 元组时,项目将命名为 Item1
、Item2
等.
By default, when using C# 7 tuples, the items will named like Item1
, Item2
, and so on.
我知道您可以命名方法返回的元组项.但是你能做同样的内联代码吗,比如下面的例子?
I know you can name tuple items being returned by a method. But can you do the same inline code, such as in the following example?
foreach (var item in list1.Zip(list2, (a, b) => (a, b)))
{
// ...
}
在 foreach
的正文中,我希望能够访问末尾的元组(包含 a
和 b
)使用比 Item1
和 Item2
更好的东西.
In the body of the foreach
, I would like to be able to access the tuple at the end (containing a
and b
) using something better than Item1
and Item2
.
推荐答案
可以,通过解构元组:
foreach (var (boo,foo) in list1.Zip(list2, (a, b) => (a, b)))
{
//...
Console.WriteLine($"{boo} {foo}");
}
或
foreach (var item in list1.Zip(list2, (a, b) => (a, b)))
{
//...
var (boo,foo)=item;
Console.WriteLine($"{boo} {foo}");
}
即使您在声明元组时命名了字段,您也需要解构语法才能将它们作为变量访问:
Even if you named the fields when declaring the tuple, you'd need the deconstruction syntax to access them as variables:
foreach (var (boo,foo) in list1.Zip(list2, (a, b) => (boo:a, foo:b)))
{
Console.WriteLine($"{boo} {foo}");
}
如果您想在不解构元组的情况下按名称访问字段,则必须在创建元组时为其命名:
If you want to access the fields by name without deconstructing the tuple, you'll have to name them when the tuple is created:
foreach (var item in list1.Zip(list2, (a, b) => (boo:a, foo:b)))
{
Console.WriteLine($"{item.boo} {item.foo}");
}
这篇关于你能命名 C# 7 Tuple 内联项吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:你能命名 C# 7 Tuple 内联项吗?


- 如何用自己压缩一个 IEnumerable 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01