vote up 2 vote down star
1

I need to do some large integer math. Are there any classes or structs out there that represent a 128-bit integer and implement all of the usual operators?

BTW, I realize that decimal can be used to represent a 96-bit int.

flag

51% accept rate

6 Answers

vote up 2 vote down check

You might be able to use Microsoft.FSharp.Math.BigInt. As Jon points out, with any luck we may see an authorized version in .NET 4.0.

Update: It's here in 4.0 Beta 1!

link|flag
vote up 0 vote down

If you don't mind making reference to the J# library (vjslib.dll included with VS by default) there is already and implementation of BigInteger in .NET

using java.math;

public static void Main(){
    BigInteger biggy = new BigInteger(....)

}
link|flag
vote up 0 vote down

There's a BigInteger class defined as part of IronPython that you could use.

link|flag
vote up 1 vote down

Here's an implementation of big integer from .net matters.

http://msdn.microsoft.com/en-us/magazine/cc163696.aspx

link|flag
vote up 0 vote down

I believe Mono has a BigInteger implementation that you should be able to track down the source for.

link|flag
vote up 2 vote down

No, there's nothing in .NET <= 3.5. I'm hoping/expecting that BigInteger will make its return in .NET 4.0. (It was cut from .NET 3.5.)

link|flag
Well hopefully they will rewrite that junk! :) – leppie Oct 23 '08 at 7:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.