摘要: /// /// 时间戳转为C#格式时间 /// /// /// static public DateTime GetTime(string timeStamp) { DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); long lTime = long.Parse(timeStamp + "0000000"); ... 阅读全文
posted @ 2014-03-23 15:42 夜了盖咋啦 阅读(248) 评论(0) 推荐(0) 编辑