Is there a zip-like method in .Net?(.Net 中有类似 zip 的方法吗?)
问题描述
在 Python 中有一个非常简洁的函数叫做 zip
,它可以用来同时遍历两个列表:
In Python there is a really neat function called zip
which can be used to iterate through two lists at the same time:
list1 = [1, 2, 3]
list2 = ["a", "b", "c"]
for v1, v2 in zip(list1, list2):
print v1 + " " + v2
以上代码应产生以下内容:
The above code should produce the following:
1 a
2 b
3 c
我想知道.Net 中是否有类似的方法?我正在考虑自己写它,但如果它已经可用,那就没有意义了.
I wonder if there is a method like it available in .Net? I'm thinking about writing it myself, but there is no point if it's already available.
推荐答案
更新:C# 4 内置 System.Linq.Enumerable.Zip 方法
Update: It is built-in in C# 4 as System.Linq.Enumerable.Zip Method
这是一个 C# 3 版本:
Here is a C# 3 version:
IEnumerable<TResult> Zip<TResult,T1,T2>
(IEnumerable<T1> a,
IEnumerable<T2> b,
Func<T1,T2,TResult> combine)
{
using (var f = a.GetEnumerator())
using (var s = b.GetEnumerator())
{
while (f.MoveNext() && s.MoveNext())
yield return combine(f.Current, s.Current);
}
}
由于 C# 2 版本过时而放弃了它.
Dropped the C# 2 version as it was showing its age.
这篇关于.Net 中有类似 zip 的方法吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.Net 中有类似 zip 的方法吗?


基础教程推荐
- rabbitmq 的 REST API 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01