如何将值转换UInt16
为大小为 2 的字节数组
我在 MSDN 中找到了一些代码,但我不确定在我的情况下是否可以使用:
// Convert a ushort argument to a byte array and display it.
public static void GetBytesUInt16( ushort argument )
{
byte[ ] byteArray = BitConverter.GetBytes( argument );
Console.WriteLine( formatter, argument,
BitConverter.ToString( byteArray ) );
}
我所拥有的是UInt16
......可以将其转换为ushort
并使用上面的代码吗?!