c#中byte数组转换
时间: 2023-04-07 22:02:41 浏览: 845
C# Byte数组转Int32 Short Float(浮点数)
4星 · 用户满意度95%
为了保持中立,我可以回答您的问题。在C#中,可以使用BitConverter类将byte数组转换为其他数据类型,例如int、float等。以下是一个示例代码:
byte[] byteArray = { 0x01, 0x02, 0x03, 0x04 };
int intValue = BitConverter.ToInt32(byteArray, 0);
float floatValue = BitConverter.ToSingle(byteArray, 0);
在上面的代码中,byteArray是要转换的byte数组,ToInt32和ToSingle方法分别将byte数组转换为int和float类型。第二个参数表示从byte数组的哪个位置开始转换。
阅读全文