如何将此字符串转换为日期时间



如何在c#中将"1319556419"转换为DateTime ?

这看起来像UNIX时间戳,如果是的话,它将是:

Int64 timestamp = Convert.ToInt64("1319556419");
DateTime newDate = new DateTime(1970,1,1).AddSeconds(timestamp);

编辑:看起来是秒而不是毫秒。

给出的日期是2011年10月25日。

相关内容

  • 没有找到相关文章

最新更新