绝对最小日期
为了政治正确性,我想知道是否有一种方法可以实例化日期,以便它包含 c# net v2 中可能的最低日期值。
For political correctness, I would like to know if there is a way to instantiate a date so that it contains the lowest date value possible in c# net v2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 DateTime.MinValue。 这是 CLR 中 DateTime 实例的最低可能值。 它是一种独立于语言的值。
Try DateTime.MinValue. This is the lowest possible value for a DateTime instance in the CLR. It is a language independent value.
新构造的 DateTime 对象也可以轻松地默认构造为 MinValue。
A newly constructed DateTime object also handily constructs by default to MinValue.
日期时间 myDate = DateTime.MinValue;
DateTime myDate = DateTime.MinValue;