vote up 2 vote down star

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.

flag

I have changed the tag order. This is primarily a C# question. – Chris Noe Oct 15 '08 at 20:18
Heh, I've never considered there to be an order in tags..interesting thought. – jjnguy Oct 16 '08 at 5:28

closed as exact duplicate by jjnguy Oct 16 '08 at 5:30

6 Answers

vote up 1 vote down

This has been answered on Stackoverflow before, twice:

Big integers in C#

How can I represent a very large integer in .NET?

link|flag
vote up 11 vote down

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.

link|flag
Bad news bears :( – jjnguy Oct 15 '08 at 18:52
I'd be surprised to see them add it. They keep saying it's not useful or important. Maybe now that F#'s coming along for the ride, they'll move basic data types over to the BCL... – MichaelGG Oct 16 '08 at 1:34
What it comes downs to, the code is crap. – leppie Oct 16 '08 at 5:38
vote up 1 vote down

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:

link|flag
IIRC, BigInteger can handle REALLY big numbers: way beyond 64bits. – Joel Coehoorn Oct 15 '08 at 18:44
Yeah, I need something larger than a decimal and a long. – jjnguy Oct 15 '08 at 18:45
vote up 1 vote down

try codeproject

link|flag
Are you saying there is no built-in type? – jjnguy Oct 15 '08 at 18:44
@[jjnguy]: i am unaware of a built-in biginteger type, hence the link to a codeproject article with one – Steven A. Lowe Oct 15 '08 at 19:28

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