Newtonsoft.Json 序列化小写首字母

Posted 只为成功找方向,不为失败找借口

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Newtonsoft.Json 序列化小写首字母相关的知识,希望对你有一定的参考价值。

//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 序列化小写首字母的主要内容,如果未能解决你的问题,请参考以下文章

Asp.Net Core中使用Newtonsoft.Json进行序列化处理解决返回值首字母小写

.net core返回json首字母小写的问题解决

Net Core中使用Newtonsoft.Json进行序列化保持原有大小写

.Net C# Newtonsoft.Json JsonSerializerSettings配置

序列化对象设置字段首字母小写(驼峰命名法)

Newtonsoft DeserializeObject“真”不区分大小写