views:

507

answers:

3

recently i use int64.

but it's no more handle my data.

so I want something like BigInt.

any idea?

A: 

You mean like BigInt unsigned integer math library?

Mitch Wheat
+2  A: 

If you're able to use .NET 4.0 beta 1, you could use System.Numerics.BigInteger. Otherwise there are various open source libraries around.

Jon Skeet
+1  A: 

Use the J# BigInteger class as described here: BigInteger

Ankur Goel