Convert.ToUInt32 Method
.NET Framework 2.0
Converts a specified value to a 32-bit unsigned integer.
| Name | Description |
|---|---|
| Convert.ToUInt32 (Boolean) | Converts the value of the specified Boolean value to the equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Byte) | Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Char) | Converts the value of the specified Unicode character to the equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (DateTime) | Calling this method always throws InvalidCastException. |
| Convert.ToUInt32 (Decimal) | Converts the value of the specified Decimal number to an equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Double) | Converts the value of the specified double-precision floating point number to an equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Int16) | Converts the value of the specified 16-bit signed integer to the equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Int32) | Converts the value of the specified 32-bit signed integer to an equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Int64) | Converts the value of the specified 64-bit signed integer to an equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Object) | Converts the value of the specified Object to a 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (SByte) | Converts the value of the specified 8-bit signed integer to the equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Single) | Converts the value of the specified single-precision floating point number to an equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (String) | Converts the specified String representation of a number to an equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (UInt16) | Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (UInt32) | Returns the specified 32-bit unsigned integer; no actual conversion is performed. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (UInt64) | Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (Object, IFormatProvider) | Converts the value of the specified Object to a 32-bit unsigned integer using the specified culture-specific formatting information. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (String, IFormatProvider) | Converts the specified String representation of a number to an equivalent 32-bit unsigned integer using the specified culture-specific formatting information. Supported by the .NET Compact Framework. |
| Convert.ToUInt32 (String, Int32) | Converts the String representation of a number in a specified base to an equivalent 32-bit unsigned integer. Supported by the .NET Compact Framework. |