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