Try to convert string to unsigned 64-bit integer.
You can find more information in comments below.
/**
Try convert string to unsigned Int64
@param str Wide character string
@param[out] out Reference to unsigned 64-bit integer where to store result of conversion
@return True if conversion succeeded, otherwise - false
*/
bool TryStringToUInt64(const String &str, unsigned long long &out);
/**
Try convert ansi string to unsigned Int64
@param str Ansi string
@param[out] out Reference to unsigned 64-bit integer where to store result of conversion
@return True if conversion succeeded, otherwise - false
*/
bool TryStringToUInt64(const AnsiString &str, unsigned long long &out);
Namespace: | nitisa |
Include: | Nitisa/Core/Strings.h |