Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 UTC 时间字符串,我需要在 C# 中的 Datetime 对象中进行转换。
我已经尝试了以下示例,但它不起作用。任何人都可以帮忙吗?
long ticks = long.Parse(ateOn); DateTime ateOnDate = new DateTime(ticks,DateTimeKind.Utc);
其中 ateOn 是字符串中的 UTC 时间。
long l = 1360417399227; var dt = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc) .Add(TimeSpan.FromMilliseconds(l));