Contains methods to work with the 64-bit integer. More...
Static Public Member Functions | |
static ASPOSECPP_SHARED_API int64_t | Parse (const String &value) |
static ASPOSECPP_SHARED_API int64_t | Parse (const String &value, const SharedPtr< IFormatProvider > &provider) |
static ASPOSECPP_SHARED_API int64_t | Parse (const String &value, const SharedPtr< Globalization::CultureInfo > &culture) |
static ASPOSECPP_SHARED_API int64_t | Parse (const String &value, const SharedPtr< Globalization::NumberFormatInfo > &nfi) |
static int64_t | Parse (const String &value, std::nullptr_t) |
static ASPOSECPP_SHARED_API int64_t | Parse (const String &value, Globalization::NumberStyles styles, const SharedPtr< IFormatProvider > &provider) |
static ASPOSECPP_SHARED_API int64_t | Parse (const String &value, Globalization::NumberStyles styles, const SharedPtr< Globalization::CultureInfo > &culture) |
static ASPOSECPP_SHARED_API int64_t | Parse (const String &value, Globalization::NumberStyles styles, const SharedPtr< Globalization::NumberFormatInfo > &nfi) |
static ASPOSECPP_SHARED_API int64_t | Parse (const String &value, Globalization::NumberStyles styles, std::nullptr_t=nullptr) |
static ASPOSECPP_SHARED_API bool | TryParse (const String &value, int64_t &result) |
static ASPOSECPP_SHARED_API bool | TryParse (const String &value, Globalization::NumberStyles styles, const SharedPtr< IFormatProvider > &provider, int64_t &result) |
static ASPOSECPP_SHARED_API bool | TryParse (const String &value, Globalization::NumberStyles styles, const SharedPtr< Globalization::CultureInfo > &culture, int64_t &result) |
static ASPOSECPP_SHARED_API bool | TryParse (const String &value, Globalization::NumberStyles styles, const SharedPtr< Globalization::NumberFormatInfo > &nfi, int64_t &result) |
static ASPOSECPP_SHARED_API bool | TryParse (const String &value, Globalization::NumberStyles styles, std::nullptr_t, int64_t &result) |
Static Public Attributes | |
static ASPOSECPP_SHARED_API constexpr int64_t | MinValue = (std::numeric_limits<int64_t>::min)() |
Smallest possible value. More... | |
static ASPOSECPP_SHARED_API constexpr int64_t | MaxValue = (std::numeric_limits<int64_t>::max)() |
Largest possible value. More... | |
Contains methods to work with the 64-bit integer.
|
static |
Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer.
value | The string to convert. |
|
static |
Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer using the provided formatting information.
value | The string to convert. |
provider | A pointer to an object that contains the string format information. |
|
static |
|
static |
|
inlinestatic |
|
static |
Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer using the provided formatting information and number style.
value | The string to convert. |
styles | A bitwise combination of values of NumberStyles enum that specifies the permitted style of the string representation of a number. |
provider | A pointer to an object that contains the string format information. |
|
static |
|
static |
|
static |
|
static |
Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer.
value | The string to convert. |
result | The reference to a 64-bit signed integer variable where the result of the conversion is put. |
|
static |
Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer using the provided formatting information and number style.
value | The string to convert. |
styles | A bitwise combination of values of NumberStyles enum that specifies the permitted style of the string representation of a number. |
provider | A pointer to an object that contains the string format information. |
result | The reference to a 64-bit signed integer variable where the result of the conversion is put. |
|
static |
|
static |
|
static |
|
static |
Largest possible value.
|
static |
Smallest possible value.