如何将此时间戳:1278276905502403转换为C#中有意义的内容?
可以试试像:
dateTime = new System.DateTime(1970,1,0); dateTime = dateTime.AddMilliseconds(value/1000);
(可能是更好的方法,但我不知道C#.)
Python改为:
>>> time.ctime(1278276905502403/1000000) 'Sun Jul 4 22:55:05 2010'