TryParse()

Int64::TryParse(const String&, int64_t&) method

Converts the specified string containing the string representation of a number to the equivalent 64-bit signed integer.

static bool System::Int64::TryParse(const String &value, int64_t &result)

Arguments

ParameterTypeDescription
valueconst String&The string to convert.
resultint64_t&The reference to a 64-bit signed integer variable where the result of the conversion is put.

Return Value

True if the conversion succeeded, otherwise - false.

Int64::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&, int64_t&) method

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 System::Int64::TryParse(const String &value, Globalization::NumberStyles styles, const SharedPtr<IFormatProvider> &provider, int64_t &result)

Arguments

ParameterTypeDescription
valueconst String&The string to convert.
stylesGlobalization::NumberStylesA bitwise combination of values of NumberStyles enum that specifies the permitted style of the string representation of a number.
providerconst SharedPtr<IFormatProvider>&A pointer to an object that contains the string format information.
resultint64_t&The reference to a 64-bit signed integer variable where the result of the conversion is put.

Return Value

True if the conversion succeeded, otherwise - false.

Int64::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::CultureInfo>&, int64_t&) method

static bool System::Int64::TryParse(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::CultureInfo> &culture, int64_t &result)

Int64::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::NumberFormatInfo>&, int64_t&) method

static bool System::Int64::TryParse(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::NumberFormatInfo> &nfi, int64_t &result)

Int64::TryParse(const String&, Globalization::NumberStyles, std::nullptr_t, int64_t&) method

static bool System::Int64::TryParse(const String &value, Globalization::NumberStyles styles, std::nullptr_t, int64_t &result)

See Also