How do I convert a CString to a double in C++?
CString
double
Unicode support would be nice also.
Thanks!
strtod (or wcstod) will convert strings to a double-precision value.
(Requires or )