up vote 4 down vote favorite
1
share [g+] share [fb]

Until BCL finally ships System.Numeric.BigInt, what do you guys use for arbitrary precision integers?

link|improve this question

68% accept rate
feedback

4 Answers

up vote 7 down vote accepted

You could try mine on codeplex: BigInteger

Or here's another: codeproject

link|improve this answer
feedback

F# has Microsoft.FSharp.Math.BigInt and Microsoft.FSharp.Math.BigNum.

link|improve this answer
feedback

Also, the J# library includes a BigInt type.

Thankfully, all this will be sorted out when the BCL finally ships a standardized BigInt.

link|improve this answer
feedback

Have a look at

IronRuby.StandardLibrary.BigDecimal.BigDecimal

link|improve this answer
Is it available as a simple DLL I can reference? (I'm coding in C# if that matters). – ripper234 Feb 19 '09 at 23:56
It's MPL so you should be free to reuse the file – Sam Saffron Feb 19 '09 at 23:58
I wasn't asking about the license terms, just about the ease of use. – ripper234 Feb 20 '09 at 0:01
It looks like it would be fairly simple to extract this from iron ruby – Sam Saffron Feb 20 '09 at 0:03
feedback

Your Answer

 
or
required, but never shown

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