无法解析符号 EnumerableEx

发布于 2024-12-25 02:39:11 字数 667 浏览 0 评论 0原文

这让我很烦恼......我正在编写一个快速排列工具,并使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咿呀咿呀哟 2025-01-01 02:39:11

交互式扩展(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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文