gpt4 book ai didi

c# - 从字符串列表中获取唯一值

转载 作者:太空宇宙 更新时间:2023-11-03 18:16:08 27 4
gpt4 key购买 nike

我有一个这样的字符串列表:

{"100", "101, "101", "102, "103, "103", "104", "104", "105"

我需要得到一个新的字符串列表,其中只有不同的值:

{"100","101","102","103","104","105"}

谁有快速的方法来做到这一点?

最佳答案

您可以使用 Distinct 方法:

List<string> distinctList = dupeList.Distinct().ToList();

关于c# - 从字符串列表中获取唯一值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6114086/

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