ToUInt32()
Convert::ToUInt32(bool) method
Converts the specified boolean value to an equivalent 32-bit unsigned integer.
static constexpr uint32_t System::Convert::ToUInt32(bool value)
Convert::ToUInt32(uint8_t) method
Converts the specified 8-bit unsigned integer to an equivalent 32-bit unsigned integer.
static constexpr uint32_t System::Convert::ToUInt32(uint8_t value)
Convert::ToUInt32(int8_t) method
Converts the specified 8-bit signed integer to an equivalent 32-bit unsigned integer.
static uint32_t System::Convert::ToUInt32(int8_t value)
Convert::ToUInt32(uint16_t) method
Converts the specified 16-bit unsigned integer to an equivalent 32-bit unsigned integer.
static constexpr uint32_t System::Convert::ToUInt32(uint16_t value)
Convert::ToUInt32(int16_t) method
Converts the specified 16-bit signed integer to an equivalent 32-bit unsigned integer.
static uint32_t System::Convert::ToUInt32(int16_t value)
Convert::ToUInt32(uint32_t) method
Returns the specified 32-bit unsigned integer.
static constexpr uint32_t System::Convert::ToUInt32(uint32_t value)
Convert::ToUInt32(int32_t) method
Converts the specified 32-bit signed integer to an equivalent 32-bit unsigned integer.
static uint32_t System::Convert::ToUInt32(int32_t value)
Convert::ToUInt32(uint64_t) method
Converts the specified 64-bit unsigned integer to an equivalent 32-bit unsigned integer.
static uint32_t System::Convert::ToUInt32(uint64_t value)
Convert::ToUInt32(int64_t) method
Converts the specified 64-bit signed integer to an equivalent 32-bit unsigned integer.
static uint32_t System::Convert::ToUInt32(int64_t value)
Convert::ToUInt32(float) method
Converts the specified float number to an equivalent 32-bit unsigned integer.
static uint32_t System::Convert::ToUInt32(float value)
Convert::ToUInt32(double) method
Converts the specified double number to an equivalent 32-bit unsigned integer.
static uint32_t System::Convert::ToUInt32(double value)
Convert::ToUInt32(const Decimal&) method
Converts the specified decimal number to an equivalent 32-bit unsigned integer.
static uint32_t System::Convert::ToUInt32(const Decimal &value)
Convert::ToUInt32(char_t) method
Converts the specified unicode character to an equivalent 32-bit unsigned integer.
static constexpr uint32_t System::Convert::ToUInt32(char_t value)
Convert::ToUInt32(DateTime) method
Conversion is not supported. Always throws InvalidCastException.
static uint32_t System::Convert::ToUInt32(DateTime value)
Convert::ToUInt32(std::nullptr_t) method
Converts the specified null-string to the equivalent unsigned 32-bit integer value.
static constexpr uint32_t System::Convert::ToUInt32(std::nullptr_t)
Return Value
Zero.
Convert::ToUInt32(const char_t *) method
Converts the specified c-string containing the string representation of a number to the equivalent unsigned 32-bit integer value.
static uint32_t System::Convert::ToUInt32(const char_t *value)
Arguments
Parameter | Type | Description |
---|---|---|
value | const char_t * | The c-string to convert |
Return Value
The unsigned 32-bit integer value equal to the number represented by the specified c-string
Convert::ToUInt32(const String&) method
Converts the specified string containing the string representation of a number to the equivalent unsigned 32-bit integer value.
static uint32_t System::Convert::ToUInt32(const String &value)
Arguments
Parameter | Type | Description |
---|---|---|
value | const String& | The string to convert |
Return Value
The unsigned 32-bit integer value equal to the number represented by the specified string
Convert::ToUInt32(const String&, int) method
Converts the specified string containing the string representation of a number in the specified base to the equivalent unsigned 32-bit integer value.
static uint32_t System::Convert::ToUInt32(const String &value, int from_base)
Arguments
Parameter | Type | Description |
---|---|---|
value | const String& | The string to convert |
from_base | int | The base of the number represented by the string |
Return Value
The unsigned 32-bit integer value equal to the number represented by the specified string
Convert::ToUInt32(const String&, const SharedPtr<IFormatProvider>&) method
Converts the specified string containing the string representation of a number to the equivalent unsigned 32-bit integer value using the provided formatting information.
static uint32_t System::Convert::ToUInt32(const String &value, const SharedPtr<IFormatProvider> &provider)
Arguments
Parameter | Type | Description |
---|---|---|
value | const String& | The string to convert |
provider | const SharedPtr<IFormatProvider>& | A pointer to an object that contains the string format information |
Return Value
The unsigned 32-bit integer value equal to the number represented by the specified string
Convert::ToUInt32(const String&, const SharedPtr<Globalization::CultureInfo>&) method
static uint32_t System::Convert::ToUInt32(const String &value, const SharedPtr<Globalization::CultureInfo> &culture)
Convert::ToUInt32(const String&, const SharedPtr<Globalization::NumberFormatInfo>&) method
static uint32_t System::Convert::ToUInt32(const String &value, const SharedPtr<Globalization::NumberFormatInfo> &nfi)
Convert::ToUInt32(const String&, std::nullptr_t) method
static uint32_t System::Convert::ToUInt32(const String &value, std::nullptr_t)
Convert::ToUInt32(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&) method
Converts the specified string containing the string representation of a number to the equivalent unsigned 32-bit integer value using the provided formatting information and number style.
static uint32_t System::Convert::ToUInt32(const String &value, Globalization::NumberStyles styles, const SharedPtr<IFormatProvider> &provider)
Arguments
Parameter | Type | Description |
---|---|---|
value | const String& | The string to convert |
styles | Globalization::NumberStyles | A bitwise combination of values of NumberStyles enum that specifies the permitted style of the string representation of a number |
provider | const SharedPtr<IFormatProvider>& | A pointer to an object that contains the string format information |
Return Value
The unsigned 32-bit integer value equal to the number represented by the specified string
Convert::ToUInt32(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::CultureInfo>&) method
static uint32_t System::Convert::ToUInt32(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::CultureInfo> &culture)
Convert::ToUInt32(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::NumberFormatInfo>&) method
static uint32_t System::Convert::ToUInt32(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::NumberFormatInfo> &nfi)
Convert::ToUInt32(const String&, Globalization::NumberStyles, std::nullptr_t) method
static uint32_t System::Convert::ToUInt32(const String &value, Globalization::NumberStyles styles, std::nullptr_t=nullptr)
Convert::ToUInt32(Enum) method
template<typename Enum,typename> static uint32_t System::Convert::ToUInt32(Enum value)
Convert::ToUInt32(const SharedPtr<Object>&, const SharedPtr<IFormatProvider>&) method
Converts the specified boxed value to equivalent unsigned 32-bit integer value.
static uint32_t System::Convert::ToUInt32(const SharedPtr<Object> &obj, const SharedPtr<IFormatProvider> &provider=nullptr)
Arguments
Parameter | Type | Description |
---|---|---|
obj | const SharedPtr<Object>& | The shared pointer to the object boxing the value to convert |
provider | const SharedPtr<IFormatProvider>& | The string format to be used if the type of the boxed value is String |
Return Value
An unsigned 32-bit integer value equivalent to the specified boxed value
See Also
- Enum NumberStyles
- Typedef SharedPtr
- Class Decimal
- Class DateTime
- Class String
- Class IFormatProvider
- Class CultureInfo
- Class NumberFormatInfo
- Class Object
- Struct Convert
- Struct Enum
- Namespace System
- Library Aspose.Slides