I mean how can I convert my hexadecimal values to biginteger ?
for example i use this :
string value="A1";
BigInteger bi=new BigInteger(value,16);
bi =161; this is true? So how can I convert back it to “A1”?
thanks..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
String.Formatsupports this:Working example:
UPDATE:
The above suggestion is valid for the
BigIntegerimplementation in theSystem.Numericsnamespace of .NET