How do I convert a CString to a double in C++?
CString
double
Unicode support would be nice also.
Thanks!
with the boost lexical_cast library, you do
#include using namespace boost; ... double d = lexical_cast(thestring);