gpt4 book ai didi

c# - 获取最大元素的索引

转载 作者:IT王子 更新时间:2023-10-29 04:36:00 28 4
gpt4 key购买 nike

给定这样一个列表:

        List<int> intList = new List<int>();
intList.Add(5);
intList.Add(10);
intList.Add(15);
intList.Add(46);

如何获取列表中最大元素的索引?在本例中,它位于索引 3。

编辑:遗憾的是标准 LINQ 没有提供此功能。

最佳答案

这样:

var maxIndex = foo.IndexOf(foo.Max());

关于c# - 获取最大元素的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1136174/

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