码迷,mamicode.com
首页 > Web开发 > 详细

JsonConvert

时间:2019-02-27 21:57:56      阅读:527      评论:0      收藏:0      [点我收藏+]

标签:for   inf   name   new   job   rip   ons   str   format   

///"{‘jsonParam‘ : " + jsonText + "}"
/*
Dictionary<string, object> tmp = (Dictionary<string, object>)jsonParam;

Employee ee = JsonConvert.DeserializeObject<Employee>(JsonConvert.SerializeObject(tmp, Formatting.Indented));


return "OK" + JsonConvert.SerializeObject(tmp, Formatting.Indented);
*/


//Employee ee = JsonConvert.DeserializeObject<Employee>(jsonParam.ToString());

// System.Web.Script.Serialization.JavaScriptSerializer jss = new System.Web.Script.Serialization.JavaScriptSerializer();
//String strJson = jss.Serialize(info);
//Response.Write(strJson);
//输出结果:
//{"Id":1,"UserName":"猫博 http://maoblog.com","Time":"\/Date(1297950721668\/","Gender":true}
//Employee info2 = jss.Deserialize<Employee>(jsonParam.ToString());

 

//Employee ee = JsonConvert.DeserializeObject<Employee>(jsonParam.ToString());

// List<Employee> jobInfoList = JsonConvert.DeserializeObject<List<Employee>>(jsonParam.ToString());

return "OK" + jsonParam.ToString();

JsonConvert

标签:for   inf   name   new   job   rip   ons   str   format   

原文地址:https://www.cnblogs.com/qqhfeng/p/10447171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!