如何在c#中将"1319556419"
转换为DateTime
?
这看起来像UNIX时间戳,如果是的话,它将是:
Int64 timestamp = Convert.ToInt64("1319556419");
DateTime newDate = new DateTime(1970,1,1).AddSeconds(timestamp);
编辑:看起来是秒而不是毫秒。
给出的日期是2011年10月25日。