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 的方法吗?


- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 使用 rss + c# 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01