gpt4 book ai didi

c# - 在 list 中找到的最大整数值

转载 作者:IT王子 更新时间:2023-10-29 04:13:43 24 4
gpt4 key购买 nike

我有一个 List<int>有几个元素。我知道如果我用 foreach 遍历它我可以获得所有的值, 但我只想要列表中的最大 int 值。

var l = new List<int>() { 1, 3, 2 };

最佳答案

假设 .NET Framework 3.5 或更高版本:

var l = new List<int>() { 1, 3, 2 };
var max = l.Max();
Console.WriteLine(max); // prints 3

Enumerable 中有很多很酷的节省时间的方法类。

关于c# - 在 list<int> 中找到的最大整数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5295112/

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