使用扩展方法 min() 获取具有最小值的对象

发布于 2024-11-16 02:10:52 字数 60 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

靑春怀旧 2024-11-23 02:10:52

查看 MinByMoreLINQ - 或者我相信响应式扩展在 System.Interactive 中有类似的东西:

var cheapestProduct = products.MinBy(p => p.Price);

如果更多的如果一项的值最低,则返回序列中最早的一项。

Have a look at MinBy in MoreLINQ - or I believe Reactive Extensions has something similar in System.Interactive:

var cheapestProduct = products.MinBy(p => p.Price);

If more than one item has the lowest value, the earliest one in the sequence will be returned.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文