This question already has answers here:
Where is my System.Numerics namespace?

(2个答案)


已关闭8年。




我已经开始研究欧拉计画的问题。目前,我在问题13中,要求您提供100个50位数字的总和的前十个数字。

我决定我将尝试使用C#中的一个大型int类来解决该问题。我在互联网上四处张望,里面有无数的示例代码。但是,我似乎在Visual Studio 2010中找不到BigInt。

最佳答案

在.NET Framework 4.0中,可以在System.Numerics.dll中找到它。添加对该程序集的引用以访问System.Numerics.BigInteger。

10-06 00:36