gpt4 book ai didi

c# - 将 C# Count() 与函数一起使用

转载 作者:太空狗 更新时间:2023-10-29 20:45:51 25 4
gpt4 key购买 nike

我试图通过使用 Linq 的 .Count() 计算出数组的最大值 在数组中出现了多少次里面有一个谓词。但是,我不完全明白该怎么做。通过阅读 MSDN 的稀缺示例,我以为我理解了,但显然不是!

这是我的想法:

string[] test = { "1", "2", "3", "4", "4" };
string max = test.Max();
Label1.Text = test.Count(p => p == max);

但这并没有奏效。所以我尝试将 ma​​x 更改为一个整数,看看是否可行,但也没有用。

最佳答案

使用 Count(predicate)可以。您只需要将返回值(整数)转换为字符串即可。

Label1.Text = test.Count(p => p == max).ToString();

关于c# - 将 C# Count() 与函数一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1444615/

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