c# – 如何解决Enumerable和MoreLINQ之间模糊的ZIP调用?

前端之家收集整理的这篇文章主要介绍了c# – 如何解决Enumerable和MoreLINQ之间模糊的ZIP调用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我遇到了扩展方法解决问题. LINQ和MoreLINQ包含zip方法,它自4.0版本以来一直存在于.NET中,并始终在 MoreLINQ库中.但是您不能使用其中一个实现与旧的扩展方法语法.所以这段代码不会编译
using MoreLinq;
using System.Linq;


var students = new [] { "Mark","Bob","David" };
var colors = new [] { "Pink","Red","Blue" };

students.Zip(colors,(s,c) => s + c );

错误

The call is ambiguous between the following methods or properties: 
'MoreLinq.MoreEnumerable.Zip<string,string,string>
(System.Collections.Generic.IEnumerable<string>,System.Collections.Generic.IEnumerable<string>,System.Func<string,string>)' and 
'System.Linq.Enumerable.Zip<string,string>)'

我在78001发布了Jon Skeet的MoreLINQ的字符串,为Concat方法找到了很好的解决方案,但是我并没有意识到zip方法的很好的分辨率.

注意:您可以随时使用静态方法调用语法,一切正常

MoreEnumerable.Zip(students,colors,c) => s + c )

但是忽略了扩展语法糖的一点.如果您使用LINQ和MoreLINQ调用进行了大量数据转换 – 您不想在中间使用静态方法调用.

有没有更好的方法解决这个歧义?

解决方法

编译方式是:
var students = new[] { "Mark","David","test" }.AsQueryable();
var colors = new[] { "Pink","Blue" };

students
    .Zip(colors,c) => s + c)
    .Dump();

学生对象必须转换为IQueryable对象.

原文链接:https://www.f2er.com/csharp/95640.html

猜你在找的C#相关文章