c# – Mono missing System.Numerics.BigInteger.Parse(string,IFormatProvider)

前端之家收集整理的这篇文章主要介绍了c# – Mono missing System.Numerics.BigInteger.Parse(string,IFormatProvider)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 Json.NET/Newtonsoft.JSON获取以下错误
Missing method System.Numerics.BigInteger::Parse(string,IFormatProvider) in assembly
/usr/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll,referenced in assembly ~/dev/Mono/Mercury/Mercury/bin/Debug/Newtonsoft.Json.dll

每次从couchDB数据库检索的Json都有一个数值字段时,就会发生这种情况.我从搜索中发现,库从System.Numerics调用方法还不是implemented in Mono.

问题是Json.NET是我正在使用的另一个库的依赖(WDK.API.CouchDB [3]).

有没有什么办法可以绕过这个没有调整任何图书馆的来源?有什么建议么?

PS:我在Linux上使用Mono 3.0.6和MonoDevelop 4.0.8.我刚刚开始学习C#,这是我的第一个项目.我试图在网上搜索这个话题,没有成果.

谢谢

[3] code.google.com/p/skitsanoswdk

解决方法

原文链接:https://www.f2er.com/csharp/95684.html

猜你在找的C#相关文章