vote up 2 vote down star

how to declare int1024 in C#? i can use VB or C++ Too.

Regards
Behrooz

flag

1  
Are you asking how to declare a 1,024-bit integer? – Ian Kemp Oct 1 at 11:22
behrooz, where did you go??? – Daud Oct 1 at 12:41
I`m right here. – behrooz Oct 3 at 17:19

4 Answers

vote up 6 vote down check

See this question: http://stackoverflow.com/questions/176775/big-integers-in-c

From the answer to that question:

MS is going to introduce System.Numerics.BigInteger class in .NET 4.0

Until then, look at IntX class.

IntX is an arbitrary precision integers library written in pure C# 2.0 with fast - O(N * log N) - multiplication/division algorithms implementation. It provides all the basic operations on integers like addition, multiplication, comparing, bitwise shifting etc.

link|flag
vote up 0 vote down

If I understand you correctly you want a 1024 bit integer.

Unfortunately there is no inbuilt 1024 bit integer type in .net. You would have to find a specialised library for that kind of thing or write one yourself.

There is an article about big integers here.

link|flag
vote up 3 vote down

And by that do you mean a 1024-bit integer? Better wait until BigInteger in 4.0. Until then, the cheekiest you can do with the core libraries is to (ab)use decimal, which has 96 bits for the integer part. Or use a 3rd-party dll.

link|flag
vote up 1 vote down

Just for avoidance of doubt:

public int int1024 = 1024;
link|flag
Haha, that's funny. – Romain Verdier Oct 1 at 12:41
it is the most funny thing i have seen this month!!! believe me. – behrooz Oct 3 at 17:16

Your Answer

Get an OpenID
or

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