是否可以从“-3:00:00”解析 DateTime细绳?
我有一个代表时间偏移的字符串。
我可以从中构建一个 DateTime 对象吗?
我的意思是如果负值可以吗?
I have a string representing time offset.
Can I build a DateTime object from that?
I mean if the the negative value is OK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果它是偏移量,您不应该使用
TimeSpan
而不是DateTime
吗?这也应该处理负时间跨度。If it's an offset, shouldn't you use
TimeSpan
rather thanDateTime
? This should also handle negative time spans.然后
then
此网站显示有关解析日期时间字符串的所有信息
this website shows all the information about parsing date time strings