无法解析符号 EnumerableEx
这让我很烦恼......我正在编写一个快速排列工具,并使用 NuGet 包管理器并安装了 Reactive LINQ 扩展,但我一直在尝试的示例代码:
public static class Extensions
{
public static IEnumerable<IEnumerable<T>> Permutations<T>(this IEnumerable<T> xs)
{
if (!xs.Any())
return EnumerableEx.Return(Enumerable.Empty<T>());
else
return from zs in Permutations(xs.Skip(1))
from i in Enumerable.Range(0, zs.Count() + 1)
select zs.Take(i).Concat(EnumerableEx.Return(xs.First())).Concat(zs.Skip(i));
}
}
不会编译,因为符号“EnumerableEx”可以'待解决。 this 是在哪个命名空间中引用的?任何提示将不胜感激。
谢谢!
This is bugging me ... I'm writing a quick permutation tool and used the NuGet package manager and installed the Reactive LINQ extensions but the example code I've been experimenting with:
public static class Extensions
{
public static IEnumerable<IEnumerable<T>> Permutations<T>(this IEnumerable<T> xs)
{
if (!xs.Any())
return EnumerableEx.Return(Enumerable.Empty<T>());
else
return from zs in Permutations(xs.Skip(1))
from i in Enumerable.Range(0, zs.Count() + 1)
select zs.Take(i).Concat(EnumerableEx.Return(xs.First())).Concat(zs.Skip(i));
}
}
Won't compile because the symbol 'EnumerableEx' can't be resolved. What namespace is this referenced in? Any tips would be greatly appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
交互式扩展(
IEnumerable
的向后移植扩展)的分发在反应式扩展黄金版发布后被分离。只需安装 NuGet 包
Install-Package Ix_Experimental-Main
即可再次工作。The distribution of Interactive Extensions (backported extensions for
IEnumerable
) was separated after gold release of Reactive Extensions.Just install NuGet package
Install-Package Ix_Experimental-Main
it'll work again.