如何在ADD参考中找到库System.Numerics?

时间:2014-04-23 20:50:43

标签: c#

我需要能够使用BigInteger和Numerics但我找不到在.NET参考列表中使用System.Numerics引用。

问题:System.Numerics参考位于何处?

(我知道如何到达该地区,你可以添加参考)

代码:

using System;
using System.Collections.Generic;
using System.Text;
using System.Numerics;

namespace ConsoleApplication1
{
    class Program
    {
       static void Main(string[] args)
        {
            BigInteger b1 = new BigInteger();
            Complex c1   = new Complex(0, 1);

            Console.WriteLine(b1);
            Console.WriteLine(c1);
            Console.ReadKey();
        }
    }
}

实际上看起来我并没有针对.NET 3.0框架。

4 个答案:

答案 0 :(得分:3)

他们按字母顺序排列......

enter image description here

确保您的目标是.NET 4.0或更高版本,请注意。

答案 1 :(得分:1)

在Visual Studio 2010中,试试这个:

在你的项目中,

  1. 右键点击添加新参考,

  2. 选择.NET

  3. 并找到此参考

答案 2 :(得分:1)

只要您知道命名空间的特定成员,MSDN实际上可以很好地告诉您。根据BigInteger上的this页面:汇编:System.Numerics(在System.Numerics.dll中)

答案 3 :(得分:1)

您必须将使用System.Numberics添加到项目中,然后才能编译并运行。

  1. 右键单击参考(选择添加参考)
  2. .NET选择
  3. 向下滚动并选择System.Numeric
  4. 注意:他们说它们按字母顺序排列,但我也有FSharp.Core,例如在M之后等等。所以它有点像字母,但也不完全。

    enter image description here 确保您的目标是.NET 4.0系统。我对Visual Studio有点新,但我不认为这些在其他版本中可用。我不会那么多地使用这些。