Is there a zip-like method in .Net?(.Net 中有类似 zip 的方法吗?)

本文介绍了.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 的方法吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!