This documentation is archived and is not being maintained.
BitConverter::GetBytes Method (UInt16)
Visual Studio 2010
Returns the specified 16-bit unsigned integer value as an array of bytes.
Assembly: mscorlib (in mscorlib.dll)
[CLSCompliantAttribute(false)] public: static array<unsigned char>^ GetBytes( unsigned short value )
Parameters
- value
- Type: System::UInt16
The number to convert.
The order of bytes in the array returned by the GetBytes method depends on whether the computer architecture is little-endian or big-endian.
The following code example converts the bit patterns of UInt16 values to Byte arrays with the GetBytes method.
// Example of the BitConverter::GetBytes( unsigned short ) method. using namespace System; // Convert an unsigned short argument to a byte array and display it. void GetBytesUInt16( unsigned short argument ) { array<Byte>^byteArray = BitConverter::GetBytes( argument ); Console::WriteLine( "{0,14}{1,13}", argument, BitConverter::ToString( byteArray ) ); } int main() { Console::WriteLine( "This example of the BitConverter::GetBytes( unsigned " "short ) \nmethod generates the following output.\n" ); Console::WriteLine( "{0,14}{1,13}", "unsigned short", "byte array" ); Console::WriteLine( "{0,14}{1,13}", "--------------", "----------" ); // Convert unsigned short values and display the results. GetBytesUInt16( 15 ); GetBytesUInt16( 1023 ); GetBytesUInt16( 10000 ); GetBytesUInt16( UInt16::MinValue ); GetBytesUInt16( Int16::MaxValue ); GetBytesUInt16( UInt16::MaxValue ); } /* This example of the BitConverter::GetBytes( unsigned short ) method generates the following output. unsigned short byte array -------------- ---------- 15 0F-00 1023 FF-03 10000 10-27 0 00-00 32767 FF-7F 65535 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.
Show: