无法在 Xamarin Studio C# 中使用 System.Numeric
Unable to use System.Numeric in Xamarin studio c#
我正在编写一个控制台项目,它需要一些非常大的数字,超出 c# 中所有 classes 的限制。我读过一个 biginteger class 可以支持这个。尽管如此,我的 C# 编译器无法识别 System.Numeric 的使用,这是使用双整数 class 所必需的。我知道并能够解决使用数组存储数字的问题,但这会更混乱,我想知道是否有更简单的方法来以某种方式使用此 class。
在您的控制台项目中添加一个 reference 到 System.Numerics
:
然后包括:
using System.Numerics;
用法:
var bInt = new BigInteger();
How do I get to this window?
要访问项目的引用,请双击 Solution/Project sub-tree 中的 "References" 项。
参考:
我正在编写一个控制台项目,它需要一些非常大的数字,超出 c# 中所有 classes 的限制。我读过一个 biginteger class 可以支持这个。尽管如此,我的 C# 编译器无法识别 System.Numeric 的使用,这是使用双整数 class 所必需的。我知道并能够解决使用数组存储数字的问题,但这会更混乱,我想知道是否有更简单的方法来以某种方式使用此 class。
在您的控制台项目中添加一个 reference 到 System.Numerics
:
然后包括:
using System.Numerics;
用法:
var bInt = new BigInteger();
How do I get to this window?
要访问项目的引用,请双击 Solution/Project sub-tree 中的 "References" 项。
参考: