Reputation: 1
recently i use int64.
but it's no more handle my data.
so I want something like BigInt.
any idea?
Upvotes: 0
Views: 3498
Reputation: 361
your int64: -9,223,372,036,854,775,808 through 9,223,372,036,854,775,807 (9.2...E+18 †) (signed)
Try using Double: 4.94065645841246544E-324 through 1.79769313486231570E+308 † for positive values
Upvotes: 0
Reputation: 1499770
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.
Upvotes: 2