在列表中找到属性值最低的项目

编程入门 行业动态 更新时间:2024-10-28 14:24:19
本文介绍了在列表中找到属性值最低的项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

假设我有这个课程:

class Person { public int ID; public string Name; }

然后我有一个人的清单.

And then I have a list of Person's.

List<Person> persons = new List<Person>();

其中充满了很多随机的人.如何查询列表以获取ID最低的人?列表中的对象是随机顺序的,因此ID最低的人可能不是第一个元素.我可以在不先对列表进行排序的情况下实现此目标吗?

Which is filled with alot of random persons. How do I query the list to get the person with the lowest ID? The objects in the list is in a random order so the person with the lowest ID might not be the very first element. Can I achieve this without sorting the list first?

推荐答案

这是不对列表进行排序,而只是对列表进行一次迭代.

this is without sorting the list and just iterates the list once.

Person minIdPerson = persons[0]; foreach (var person in persons) { if (person.ID < minIdPerson.ID) minIdPerson = person; }

更多推荐

在列表中找到属性值最低的项目

本文发布于:2023-11-03 07:33:30,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1554580.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:属性   最低   项目   列表中

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!