public long ReadInt64() { byte[] data = new byte[8]; this.BaseStream.Read(data, 0, 8); BigEnd64 l = new BigEnd64(data, 0); return(l.SignedLong); }
public ulong ReadUInt64() { byte[] data = new byte[8]; this.BaseStream.Read(data, 0, 8); BigEnd64 l = new BigEnd64(data, 0); return(l.UnsignedValue); }