gpt4 book ai didi

c# - List.Where Where 不会出现在智能感知中

转载 作者:行者123 更新时间:2023-11-30 13:09:34 24 4
gpt4 key购买 nike

我正在阅读 Jon Skeet 的书,他提供了一个很好的例子:

List<Product> products = Product.GetSampleProducts();

foreach (Product product in products.Where(p => p.Price > 10))
{
Console.WriteLine(product);
}

这对我来说似乎很简单。但是,当我尝试做同样的事情时,Where 并没有出现在智能感知中。我错过了什么吗?看起来一样。

List<lead> prospects = GetAllProspects();

foreach (lead prospect in prospects)
{

}

最佳答案

添加对 System.Linq 的引用:

using System.Linq;

确保您的项目面向 .Net 3.5 或更高版本。

关于c# - List<T>.Where Where 不会出现在智能感知中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4996278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com