UInt32

UInt32 struct

Contains methods to work with the unsigned 32-bit integer.

class UInt32

Methods

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

Fields

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

See Also