Skip to content

C# 从 short 转 byte 方法

Updated: at 12:43,Created: at 04:08

本文告诉大家多个方法转换 short 和 byte 有简单的也有快的

快速简单的方法

static short ToShort(short byte1, short byte2)
{
return (byte2 << 8) + byte1;
}
static void FromShort(short number, out byte byte1, out byte byte2)
{
byte2 = (byte) (number >> 8);
byte1 = (byte) (number & 255);
}

简单的方法

通过BitConverter 可以将大量的类转换为 byte 包括 short 的方法

short number = 42;
byte[] numberBytes = BitConverter.GetBytes(number);
short converted = BitConverter.ToInt16(numberBytes);

但是为了这么简单的 short 两个 byte 创建一个数组,感觉不是很好

https://stackoverflow.com/q/1442583/6116637


知识共享许可协议

原文链接: http://blog.lindexi.com/post/C-%E4%BB%8E-short-%E8%BD%AC-byte-%E6%96%B9%E6%B3%95

本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。 欢迎转载、使用、重新发布,但务必保留文章署名 林德熙 (包含链接: https://blog.lindexi.com ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请与我 联系