我对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());
解决方法 您还可以在liNQ中使用distinct关键字: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?)
var dedupedList = zipcodes.distinct().ToList();
欲了解更多,请参阅https://msdn.microsoft.com/en-us/library/vstudio/bb348436(v=vs.100).aspx
总结以上是内存溢出为你收集整理的c# – linq查询组在字符串列表中全部内容,希望文章能够帮你解决c# – linq查询组在字符串列表中所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)