在C#中,可以使用BitConverter類的靜態方法來將byte數組轉換為其他數據類型。以下是一些常用的方法示例:
byte[] byteArray = { 0x12, 0x34, 0x56, 0x78 };
int intValue = BitConverter.ToInt32(byteArray, 0);
byte[] byteArray = { 0x12, 0x34, 0x56, 0x78 };
long longValue = BitConverter.ToInt64(byteArray, 0);
byte[] byteArray = { 0x41, 0x48, 0xF5, 0xC3 };
float floatValue = BitConverter.ToSingle(byteArray, 0);
byte[] byteArray = { 0x40, 0x49, 0x0F, 0xDB, 0x22, 0xD0, 0x40, 0x49 };
double doubleValue = BitConverter.ToDouble(byteArray, 0);
byte[] byteArray = { 0x01 };
bool boolValue = BitConverter.ToBoolean(byteArray, 0);
請注意,以上示例中的第二個參數表示從byte數組的哪個索引處開始轉換。