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.
我正在尝试获取 XML 文件中的时间戳,但它说的是:
<diary_date>1347274789</diary_date>
这个接缝序列化给我,但我没有找到任何方法来反序列化这种格式。你知道如何解决这个问题吗?
这是自 1970 年 1 月 1 日以来经过的秒数
var dt = new DateTime(1970, 1, 1).AddSeconds(1347274789); //09/10/2012 10:59:49
http://en.wikipedia.org/wiki/Unix_time