列表中的最大日期时间
如何使用 C# 2.0 从 DateTime 值列表中获取最大日期时间?
How do you get the max datetime from a list of DateTime values using C# 2.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 C# 2.0 从 DateTime 值列表中获取最大日期时间?
How do you get the max datetime from a list of DateTime values using C# 2.0?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
所有的迭代是怎么回事......这非常微不足道
What's with all the iterating....this is very trivial
这是一个执行此操作的简单循环:
Here's a simple loop to do this:
您的意思是集合、集合或列表中的最大日期时间吗?如果是这样:
如果您的意思是您想知道任何日期时间的最高可能支持值,那就是:
Do you mean max datetime in set, collection, or List? If so:
If you mean you want to know the highest possible supported value for any datetime, it's just:
var max = new[] { datetime1, datetime2 }.Max();
var max = new[] { datetime1, datetime2 }.Max();