vote up 17 vote down star
5

Does .NET come with a class capable of representing extremely large integers, such as 100 factorial? If not, what are some good third party libraries to accomplish this?

flag

57% accept rate
I'm amazed .NET doesn't have a big integer class. That just confirms I was right to avoid the platform. – finnw Oct 8 '08 at 22:50
1  
Lack of a BigInt class is a major to you? – Fowl Jan 31 at 13:13
3  
It's a big deal if you are working on Project Euler #20 :-) – CMPalmer Mar 2 at 22:45

5 Answers

vote up 13 vote down check

.NET has a BigInteger class, but it is internal, unfortunately. However, several places have their own. You can grab an implementation from IronPython, or the one from CodeProject, or from Visual J#. I have to say, I've not tried these myself, so I don't know which one is the best.

http://www.codeplex.com/IronPython http://www.codeproject.com/KB/cs/biginteger.aspx http://msdn.microsoft.com/en-us/magazine/cc163696.aspx

link|flag
vote up 7 vote down

Microsoft.FSharp.Math.Types.BigInt

It can represent any integer.

link|flag
vote up 7 vote down

Also, FYI, I believe BigInteger will finally be public and consumable in the .NET Framework 4.0

link|flag
vote up 4 vote down

Mono has a public BigInteger implementation already:

http://www.go-mono.com/docs/index.aspx?link=T:Mono.Math.BigInteger

You can just grab the Mono.Security assembly to use it; since its a Mono class library it should be MIT licensed too.

link|flag
vote up 2 vote down

Here is a link the documentation of big integer in framework 4.0

http://msdn.microsoft.com/en-us/library/system.numerics.biginteger%28VS.100%29.aspx

link|flag

Your Answer

Get an OpenID
or

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