从 IEnumerable获取最早日期
我有一个 IEnumerable
,其中包含多个日期。我如何从该集合中获取最早的日期?
谢谢!
戴夫
I have an IEnumerable<DateTime>
with a number of dates in it. How would I get the earliest date from that collection?
Thanks!
Dave
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
Enumerable.Min
< 立即通过 LINQ 执行此操作/a>.由于
DateTime
实现了IComparable
,Enumerable.Min
将使用DateTime.CompareTo
查找集合中的最小DateTime
。You can do this immediately with LINQ using
Enumerable.Min
.Since
DateTime
implementsIComparable<DateTime>
,Enumerable.Min
will useDateTime.CompareTo
to find the minimumDateTime
in the collection.