我接收一串数据。把他存储到 byte[] ReByte里,我是这样写的
//精度纬度运算
Lon = (uint)((ReByte[58] << 24) | (ReByte[59] << 16) | (ReByte[60] << 8) | ReByte[61]);
Lat = (uint)((ReByte[62] << 24) | (ReByte[63] << 16) | (ReByte[64] << 8) | ReByte[65]);有时候 抱异常说我 “指定的参数已经超出有效范围”
比个例子 出异常的时候的值为
ReByte[58]           57
ReByte[59]           64
ReByte[60]           8
ReByte[61]           86
就会说 指定的参数已经超出有效范围
请问是什么原因,如何解决???