如何在MonoDevelop中使用BigInteger class?

How to use the BigInteger class in MonoDevelop?

我在 Linux Mint 中使用 MonoDevelop。

我的问题是找不到参考 "System.Numerics",否则当我使用 Windows.

时,我可以在 VisualStudio 中轻松找到它

我特别想将 BigInteger 用于更大的值。 我能找到的最接近的东西是这个库:https://biginteger.codeplex.com/;这对我没有用,因为我无法 link 它。

(这是我在这里唯一能找到的与我的问题类似的东西,但对我不起作用:Mono missing System.Numerics.BigInteger.Parse(string,IFormatProvider)。任何其他允许我使用大于 20 位数字的提议欢迎。)

为您的项目添加对 System.Numerics 的引用:

使用:

using System.Numerics

用法:

var bigInt = new BigInteger();