public int GetIntLittle(int offset)
 {
     if (offset < 0 || offset + 4 > this.length)
     {
         return(0);
     }
     return(ByteUtil.LittleBytesToInt(bytes, offset));
 }