列表没有 intellisense 中的Where

发布于 2024-12-03 14:37:19 字数 189 浏览 1 评论 0原文

我不明白为什么有时我无法在通用列表上执行 .where() 。大多数时候它会显示在智能感知中,但有时却不会。

这与列表是参数这一事实有关吗?或者与 resharper 的智能感知有关?

在此处输入图像描述

I don't understand why sometime I can't perform a .where() on a generic list. Most of the time it's shown in the intellisense, but sometimes it's not.

Is it related to the fact that the list is a parameter? Or is it related to resharper's intellisense?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

彩虹直至黑白 2024-12-10 14:37:19

您需要导入适当的命名空间:

using System.Linq;

You need to import the appropriate namespace:

using System.Linq;
吐个泡泡 2024-12-10 14:37:19

如果没有

using System.Linq;

这个,LINQ 扩展方法将不会显示。

You are missing

using System.Linq;

Without that, LINQ extension methods will not show up.

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