LitJson如何解析时间
json时间是用当前减去1970-1-1的毫秒数。
String strTime = (DateTime.Now - DateTime.Parse("1970-01-01")).TotalMilliseconds.ToString();
现在我获取到json传送过来的时间。是long格式的。
我如何解析成xxxx-xx-xx这样的时间格式呢?
------解决方案--------------------DateTime.Parse("1970-01-01").AddMilliseconds(long)