I have been trying to use the BigInteger type, that is supposedly new in .NET Framework 4.0.
I don't seem to be able to get to it, and get an error when trying to reference it via Using System.Numerics.
Any idea what I'm doing wrong? Sorry if this is a stupid question...
Did you add a reference to System.Numerics?
Right click on References -> Add Reference -> .NET tab -> System.Numerics -> OK
Add a Reference to System.Numerics assembly.
Add using System.Numerics;
statement
Have you added a project reference (Project... Add Reference...) to System.Numerics?