I was wondering if there was an equivalent class in C# to Java's BigInteger class. I'm sure there is.
I need something that can be arbitrarily long.
This question is basically a duplicate of this question.
|
|
I was wondering if there was an equivalent class in C# to Java's I need something that can be arbitrarily long. This question is basically a duplicate of this question.
|
||||
|
closed as exact duplicate by jjnguy Oct 16 '08 at 5:30 |
|
|
Already asked here: http://stackoverflow.com/questions/25375/how-can-i-represent-a-very-large-integer-in-net |
|||
|
|
|
|
One way or another this has been covered pretty well: http://stackoverflow.com/questions/185075/how-do-i-represent-really-big-numbers-in-net-closed http://stackoverflow.com/questions/25375/how-can-i-represent-a-very-large-integer-in-net |
||
|
|
|
|
This has been answered on Stackoverflow before, twice: |
||
|
|
|
|
There isn't a version in the framework. There was going to be one in 3.5, but it was cut before release. I wouldn't be at all surprised to hear it's back in for .NET 4.0 - in fact, I'd be quite disappointed to learn otherwise. |
||||||
|
|
|
Are you looking for Int64? Edited: Ah, I see. According to an MSDN blog post, IronPython has an equivalent to an arbitrary precision integer, but I've never used it. The blog post is here: |
||||
|
|
|
try codeproject |
||||
|