求助,Newtonsoft.Json,Version=4.5.0.0 的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求助,Newtonsoft.Json,Version=4.5.0.0 的问题相关的知识,希望对你有一定的参考价值。

参考技术A 最后同事帮忙在配置文件里面添加了一些东西,好像是版本引用问题
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>

Newtonsoft.Json

技术分享图片
                IdReader = new CertReaderLib.CertReader();                
                Result = Newtonsoft.Json.JsonConvert.DeserializeObject<ReadIDResultInfo>(IdReader.connect());
                if (Result.resultFlag != 0)
                    return Result;
                Result = Newtonsoft.Json.JsonConvert.DeserializeObject<ReadIDResultInfo>(IdReader.readCert());
                return Result;
View Code

 

以上是关于求助,Newtonsoft.Json,Version=4.5.0.0 的问题的主要内容,如果未能解决你的问题,请参考以下文章

FineUI中Newtonsoft.Json版本报错解决办法

无法将类型“newtonsoft.json.linq.jtoken”隐式转换为 newt“newtonsoft.json.linq.jvalue”

从 JSON 检索项目时获取“无法将 Newtonsoft.Json.Linq.JObject 转换为 Newtonsoft.Json.Linq.JToken”

使用 Newtonsoft.Json 解析 JSON 时出错

Newtonsoft.Json,填充字典失败

Newtonsoft.Json(Json.net) 的使用