G
Guest
How do you convert a hex string into a double using C# in framework v2.0?
I've seen this question answered before, but apparently something has
changed in 2.0 that negates the old solution that I've seen. The code:
DoubleVariable = Double.Parse(HexString, NumberStyles.AllowHexSpecifier);
results in the error:
"The number style AllowHexSpecifier is not supported on floating point data
types."
Thanks in advance for any help.
I've seen this question answered before, but apparently something has
changed in 2.0 that negates the old solution that I've seen. The code:
DoubleVariable = Double.Parse(HexString, NumberStyles.AllowHexSpecifier);
results in the error:
"The number style AllowHexSpecifier is not supported on floating point data
types."
Thanks in advance for any help.