日期:2014-05-18 浏览次数:20913 次
byte[] buff = new byte[1024]; byte* pStart = &buff[3]; int* pValue = (int*)pStart; int value = *pValue;
------解决方案--------------------
int value = Bytes[4] << 24 | Bytes[5] << 16 | Bytes[6] << 8 | Bytes[7];
or
int value = Bytes[7] << 24 | Bytes[6] << 16 | Bytes[5] << 8 | Bytes[4];