使用扩展方法 min() 获取具有最小值的对象
list.Min() 获取整数最小值。我想获取 List 中具有某个属性 X 的最小值的对象。我该怎么做?
list.Min() gets me the min value as integer. I want to get the object in List which has the min value for a certain property X. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
MinBy
中MoreLINQ - 或者我相信响应式扩展在System.Interactive
中有类似的东西:如果更多的如果一项的值最低,则返回序列中最早的一项。
Have a look at
MinBy
in MoreLINQ - or I believe Reactive Extensions has something similar inSystem.Interactive
:If more than one item has the lowest value, the earliest one in the sequence will be returned.