Ejemplo n.º 1
0
 public static int ByteArrayToInt(byte[] bytes) {
   return MyGroup.groupMemberToInt(bytes);
   // return bytes[0] << 24 | (bytes[1] & 0xFF) << 16 | (bytes[2] & 0xFF) << 8 | (bytes[3] & 0xFF);
 }