marocchino
marocchino

Reputation: 1

How can I use BigInt class in vb.net? (visual studio 2008)

recently i use int64.

but it's no more handle my data.

so I want something like BigInt.

any idea?

Upvotes: 0

Views: 3498

Answers (4)

Minh
Minh

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

Ankur Goel
Ankur Goel

Reputation: 1095

Use the J# BigInteger class as described here: BigInteger

Upvotes: 1

Jon Skeet
Jon Skeet

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

Mitch Wheat
Mitch Wheat

Reputation: 300489

You mean like BigInt unsigned integer math library?

Upvotes: 0

Related Questions