How do you convert between hexadecimal numbers and decimal numbers in C#?
It looks like you can say
Convert.ToInt64(value, 16)
to get the decimal from hexdecimal.
The other way around is:
otherVar.ToString("X");