gpt4 book ai didi

c# - C# 3 的新手 : should this be done with linq?

转载 作者:行者123 更新时间:2023-11-30 18:48:31 25 4
gpt4 key购买 nike

我有两个单词列表。我想计算两个列表中存在的大于 3 个字符的单词。您将如何使用 C# 解决它?

最佳答案

我会用

var count = Enumerable.Intersect(listA, listB).Count(word => word.Length > 3);

假设listAlistB类型为 IEnumerable<String> .

关于c# - C# 3 的新手 : should this be done with linq?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1327844/

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