2
I have this hexadecimal value "E365A931A000000".
I need to convert it to integer I’m using the following code.
string hex = "E365A931A000000";
CodLibercao = Convert.ToInt32(hex);
This code is sending me the following exception:
"Input string was not in a correct format."
What I’m doing wrong in conversion?
64 bits is required Padawan.
– Malkaviano