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.
如何在 C# 中将字符串转换"1319556419"为 a ?DateTime
"1319556419"
DateTime
这看起来像一个 UNIX 时间戳,如果是这样,它将是:
Int64 timestamp = Convert.ToInt64("1319556419"); DateTime newDate = new DateTime(1970,1,1).AddSeconds(timestamp);
编辑:从外观上看,它实际上是几秒钟而不是几毫秒。
这给出了 2011 年 10 月 25 日的日期。