0

我有一个 UTC 时间字符串,我需要在 C# 中的 Datetime 对象中进行转换。

我已经尝试了以下示例,但它不起作用。任何人都可以帮忙吗?

long ticks = long.Parse(ateOn);
DateTime ateOnDate = new DateTime(ticks,DateTimeKind.Utc);

其中 ateOn 是字符串中的 UTC 时间。

4

1 回答 1

1
long l = 1360417399227;
var dt = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)
         .Add(TimeSpan.FromMilliseconds(l));
于 2013-02-09T14:56:54.747 回答