c# – linq查询组在字符串列表中

c# – linq查询组在字符串列表中,第1张

概述参见英文答案 > Remove duplicates from a List<T> in C#                                    25个 我对cq的linq查询很新.我有一个字符串列表,我想获得一个新列表或删除所有双字符串. List<string> zipcodes = new List<string>();zipcodes.Add("1234");zip 参见英文答案 > Remove duplicates from a List<T> in C#                                    25个
我对cq的linq查询很新.我有一个字符串列表,我想获得一个新列表或删除所有双字符串.

List<string> zipcodes = new List<string>();zipcodes.Add("1234");zipcodes.Add("1234");zipcodes.Add("1234");zipcodes.Add("4321");zipcodes.Add("4321");List<string> groupbyzipcodes =(from zip in zipcodesgroup zip by zip into newgroupselect newgroup.ToList());

cannot implicitly convert type
'System.collection.Generic.IEnumarable<System.Collections.Generic.List<string>'
to 'System.collections.Generic.List<string>. an explicit conversion
exists (are you missing a cast?)

解决方法 您还可以在liNQ中使用distinct关键字:

var dedupedList = zipcodes.distinct().ToList();

欲了解更多,请参阅https://msdn.microsoft.com/en-us/library/vstudio/bb348436(v=vs.100).aspx

总结

以上是内存溢出为你收集整理的c# – linq查询组在字符串列表中全部内容,希望文章能够帮你解决c# – linq查询组在字符串列表中所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1224553.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存