摘要: c#代码 public class DateTimeUtil { /// /// 把json的时间格式还原-服务端 /// /// /// public static string Json2Com(string str) { str = Regex.Replace(str, @"\\/Date\((\d+)\)\\/", match => { DateTime dt = new DateTime(1970, ... 阅读全文
posted @ 2013-08-06 16:08 Bruce_yao 阅读(274) 评论(0) 推荐(0) 编辑