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

Newtonsoft.Json 序列化小写首字母

时间:2018-07-13 17:51:07      阅读:724      评论:0      收藏:0      [点我收藏+]

标签:resolve   property   res   case   驼峰   首字母   .json   sep   convert   

//json对象命名小驼峰式转换
var json = JsonConvert.SerializeObject(newAccount, Formatting.Indented, new JsonSerializerSettings
{
ContractResolver = new Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver()
});

Account newAccount2 = JsonConvert.DeserializeObject<Account>(json, new JsonSerializerSettings
{
ContractResolver = new Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver()
});

Newtonsoft.Json 序列化小写首字母

标签:resolve   property   res   case   驼峰   首字母   .json   sep   convert   

原文地址:https://www.cnblogs.com/icebutterfly/p/9305806.html

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