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