TryParse()

UInt32::TryParse(const String&, uint32_t&) method

Converts the specified string containing the string representation of a number to the equivalent 32-bit unsigned integer.

static bool System::UInt32::TryParse(const String &value, uint32_t &result)

Arguments

ParameterTypeDescription
valueconst String&The string to convert.
resultuint32_t&The reference to a 32-bit unsigned integer variable where the result of the conversion is put.

Return Value

True if the conversion succeeded, otherwise - false.

UInt32::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&, uint32_t&) method

Converts the specified string containing the string representation of a number to the equivalent 32-bit unsigned integer using the provided formatting information and number style.

static bool System::UInt32::TryParse(const String &value, Globalization::NumberStyles styles, const SharedPtr<IFormatProvider> &provider, uint32_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.
resultuint32_t&The reference to a 32-bit unsigned integer variable where the result of the conversion is put.

Return Value

True if the conversion succeeded, otherwise - false.

UInt32::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::CultureInfo>&, uint32_t&) method

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

UInt32::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::NumberFormatInfo>&, uint32_t&) method

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

UInt32::TryParse(const String&, Globalization::NumberStyles, std::nullptr_t, uint32_t&) method

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

See Also