我想将4-Byte的数组转成一个32-bit的Int值:byte [] segment = new byte[4];
segment[3] = 0x07;
int timeVal = Convert.ToInt32(segment);
这时候,CLR说不能转!不知道怎么实现这样的功能?