BitConverter.GetBytes Method (UInt32)
.NET Framework 4
Returns the specified 32-bit unsigned integer value as an array of bytes.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.UInt32
The number to convert.
The following code example converts the bit patterns of UInt32 values to Byte arrays with the GetBytes method.
// Example of the BitConverter.GetBytes( uint ) method. using System; class GetBytesUInt32Demo { const string formatter = "{0,16}{1,20}"; // Convert a uint argument to a byte array and display it. public static void GetBytesUInt32( uint argument ) { byte[ ] byteArray = BitConverter.GetBytes( argument ); Console.WriteLine( formatter, argument, BitConverter.ToString( byteArray ) ); } public static void Main( ) { Console.WriteLine( "This example of the BitConverter.GetBytes( uint ) " + "\nmethod generates the following output.\n" ); Console.WriteLine( formatter, "uint", "byte array" ); Console.WriteLine( formatter, "----", "----------" ); // Convert uint values and display the results. GetBytesUInt32( 15 ); GetBytesUInt32( 1023 ); GetBytesUInt32( 0x100000 ); GetBytesUInt32( 1000000000 ); GetBytesUInt32( uint.MinValue ); GetBytesUInt32( int.MaxValue ); GetBytesUInt32( uint.MaxValue ); } } /* This example of the BitConverter.GetBytes( uint ) method generates the following output. uint byte array ---- ---------- 15 0F-00-00-00 1023 FF-03-00-00 1048576 00-00-10-00 1000000000 00-CA-9A-3B 0 00-00-00-00 2147483647 FF-FF-FF-7F 4294967295 FF-FF-FF-FF */
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.