I need to be able to use BigInteger and Numerics but I cannot find the using System.Numerics reference in the .NET reference list.
Question: Where is the System.Numerics reference located?
(I know how to get to the area were you can add in reference)
Code:
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();
}
}
}
Actually it looked like I was not targeting the .NET 3.0 framework.