Int64

Int64 class

Contains methods to work with the 64-bit integer.

class Int64

Methods

MethodDescription
static int64_t Parse(const String&)Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer.
static int64_t Parse(const String&, const SharedPtr<IFormatProvider>&)Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer using the provided formatting information.
static int64_t Parse(const String&, const SharedPtr<Globalization::CultureInfo>&)
static int64_t Parse(const String&, const SharedPtr<Globalization::NumberFormatInfo>&)
static int64_t Parse(const String&, std::nullptr_t)
static int64_t Parse(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&)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.
static int64_t Parse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::CultureInfo>&)
static int64_t Parse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::NumberFormatInfo>&)
static int64_t Parse(const String&, Globalization::NumberStyles, std::nullptr_t)
static bool TryParse(const String&, int64_t&)Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer.
static bool TryParse(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&, int64_t&)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.
static bool TryParse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::CultureInfo>&, int64_t&)
static bool TryParse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::NumberFormatInfo>&, int64_t&)
static bool TryParse(const String&, Globalization::NumberStyles, std::nullptr_t, int64_t&)

Fields

FieldDescription
static constexpr MaxValueLargest possible value.
static constexpr MinValueSmallest possible value.

See Also