本文介绍了转换没有时区的datetime的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有字符串日期:2013-07-22T08:51:38.000-07:00当我这个字符串,我收到偏移时区的日期。
我收到的这个:
DateTime.Parse(2013-07-22T08:51:38.000- 07:00)= 7/22/2013 7:51:38 PM
但我需要收到7/22/2013 8:51:38 AM - 没有偏移的DateTime。
解决方案
可以使用DateTimeOffset的DateTime属性。
示例:
string s =2013-07-22T08:51:38.000-07:00;
var dateTimeOffset = DateTimeOffset.Parse(s,null);
Console.WriteLine(dateTimeOffset.DateTime);
输出:
code> 22/07/2013 08:51:38
I have date in string: "2013-07-22T08:51:38.000-07:00"
When i try parse this string, i receive date with offset timezone.
How do can it make without timezone?
this that i receive:DateTime.Parse("2013-07-22T08:51:38.000-07:00") = 7/22/2013 7:51:38 PMbut i need receive 7/22/2013 8:51:38 AM - DateTime without offset.
解决方案
You can use the DateTime property of DateTimeOffset.
Example:
string s = "2013-07-22T08:51:38.000-07:00";
var dateTimeOffset =DateTimeOffset.Parse(s, null);
Console.WriteLine(dateTimeOffset.DateTime);
Outputs:
22/07/2013 08:51:38
这篇关于转换没有时区的datetime的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!