Convert.ToUInt32 Method (Byte)
.NET Framework (current version)
Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit unsigned integer.
This API is not CLS-compliant.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System.Byte
The 8-bit unsigned integer to convert.
The following example converts each element in a byte array to an unsigned integer.
byte[] bytes = { Byte.MinValue, 14, 122, Byte.MaxValue}; uint result; foreach (byte byteValue in bytes) { result = Convert.ToUInt32(byteValue); Console.WriteLine("Converted the {0} value {1} to the {2} value {3}.", byteValue.GetType().Name, byteValue, result.GetType().Name, result); } // The example displays the following output: // Converted the Byte value 0 to the UInt32 value 0. // Converted the Byte value 14 to the UInt32 value 14. // Converted the Byte value 122 to the UInt32 value 122. // Converted the Byte value 255 to the UInt32 value 255.
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: