2

我在 Linux Mint 中使用 MonoDevelop。

我的问题是我找不到引用“System.Numerics”,否则我在使用 Windows 时可以在 VisualStudio 中轻松找到。

我特别想将 BigInteger 用于更大的值。我能找到的最接近的是这个库:https ://biginteger.codeplex.com/ ;这对我来说并没有真正起作用,因为我无法链接它。

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

4

1 回答 1

2

System.Numerics为您的项目添加参考:

在此处输入图像描述

使用:

using System.Numerics

用法:

var bigInt = new BigInteger();
于 2016-05-20T16:05:13.667 回答