列表没有 intellisense 中的Where
我不明白为什么有时我无法在通用列表上执行 .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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要导入适当的命名空间:
You need to import the appropriate namespace:
如果没有
这个,LINQ 扩展方法将不会显示。
You are missing
Without that, LINQ extension methods will not show up.