I would like to know if there is any efficient way to store a big number using C#. I would like to create number consisting of 960 bytes but BigInteger
can't hold it. I would be grateful for any advice.
UPDATE: I am using random byte generator to fill up array needed for constructor of BigInteger
. For 960 byte array i BigInteger
is returning a negative number.