前端之家收集整理的这篇文章主要介绍了
c# – 在.NET中计算列表最小/最大值的最短代码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要像
int minIndex = list.FindMin(delegate (MyClass a,MyClass b) {returns a.CompareTo(b);});
是否有内置的方式在.NET中执行此操作?
尝试看看这些:
Min
Max
只要你的类实现了IComparable,你所要做的就是:
List<MyClass> list = new List();
//add whatever you need to add
MyClass min = list.Min();
MyClass max = list.Max();
原文链接:https://www.f2er.com/csharp/95068.html