gpt4 book ai didi

c# - .NET List.Distinct

转载 作者:可可西里 更新时间:2023-11-01 08:50:56 26 4
gpt4 key购买 nike

我正在使用 .NET 3.5。为什么我仍然得到:

does not contain a definition for 'Distinct'

使用此代码:

using System.Collections.Generic;

//.. . . . . code


List<string> Words = new List<string>();
// many strings added here . . .
Words = Words.Distinct().ToList();

最佳答案

你是吗

using System.Linq;

?

DistinctSystem.Linq.Enumerable 中定义的扩展方法,因此您需要添加该 using 语句。

并且不要忘记添加对 System.Core.dll 的引用(如果您使用的是 VS2008,这已经为您完成)。

关于c# - .NET List.Distinct,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1138848/

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