使用 DateTime.ParseExact 时,如何指定给定日期的时区?
给出以下内容:
DateTime.ParseExact(timeStamp, "yyyyMMdd-HH:mm:ss.fff", System.Globalization.CultureInfo.InvariantCulture);
如何指定给定时间是 UTC?现在的结果是给它我当前的时区。
Given the following:
DateTime.ParseExact(timeStamp, "yyyyMMdd-HH:mm:ss.fff", System.Globalization.CultureInfo.InvariantCulture);
How do you specify that the given time is UTC? Right now the result is giving it my current timezone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
添加
DateTimeStyles.AssumeUniversal< /code>
,因为格式中未指定。
Add
DateTimeStyles.AssumeUniversal
, since it's not specified in the format.您可以在解析字符串的末尾包含时区偏移量,如下所示
DateTime.Parse("2011-01-01 12:00:00-5:00")
http://msdn.microsoft.com/en-us/library/1k1skd40.aspx
You can include the timezone offset at the end of the parse string like so
DateTime.Parse("2011-01-01 12:00:00-5:00")
http://msdn.microsoft.com/en-us/library/1k1skd40.aspx
根据agent-j的回答,您可以将 DateTimeStyles 添加到 DateTime.Parse(...)
Following agent-j's answer, you can add the DateTimeStyles to DateTime.Parse(...)