Content


NTL
Core
TryStringToInt64

TryStringToInt64


Try to convert string to 64-bit integer.

You can find more information in comments below.

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