I have a string which contains a big hexadecimal number, something like this :
string hexa = "292145F2E92145E6B92FAA6A95FF7E6B92145FAA6A22DE192145FAA696043F457306A";
I just want to transform this hexa
string in a BigInteger
variable (WITHOUT modifying the value of the string) to use it after.
Something like this :
BigInteger blabla = new BigInteger(hexa);
I just want the same string, but in BigInteger
variable