private int readInt(RandomAccessFileOrArray stream) { if (_isBigEndian) { return(stream.ReadInt()); } else { return(stream.ReadIntLe()); } }