前端之家收集整理的这篇文章主要介绍了
c# – .NET List.Distinct,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用.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;
?
Distinct是在System.Linq.Enumerable中定义的扩展方法,因此您需要添加该using语句.
并且不要忘记添加对System.Core.dll的引用(如果您使用的是VS2008,这已经为您完成了).
原文链接:https://www.f2er.com/csharp/93600.html