gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 23:56:29 27 4
gpt4 key购买 nike

<分区>

我对使用 C# 进行 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 zipcodes
group zip by zip into newgroup
select 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?)

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