Possible Duplicate:
What should I use for a BigInt class in .NET?
I need to represent large numbers in C#.
I tried Int64
, but now I need to deal with 68! (factorial(68)).
I checked UInt64
and it also isn't good enough.
people here say to use BigInteger, but I understand that .NET 3.5 doesn't support it by some reason.. so what should I do?