Convert string to double.
You can find more information in comments below.
/**
Convert string to double
@param str Wide character string
@return double value or throw exception if conversion failed
*/
double StringToDouble(const String &str);
/**
Convert ansi string to double
@param str Ansi string
@return double value or throw exception if conversion failed
*/
double StringToDouble(const AnsiString &str);
Namespace: | nitisa |
Include: | Nitisa/Core/Strings.h |