示例#1
0
        public long ReadInt64()
        {
            byte[] data = new byte[8];
            this.BaseStream.Read(data, 0, 8);
            BigEnd64 l = new BigEnd64(data, 0);

            return(l.SignedLong);
        }
示例#2
0
        public ulong ReadUInt64()
        {
            byte[] data = new byte[8];
            this.BaseStream.Read(data, 0, 8);
            BigEnd64 l = new BigEnd64(data, 0);

            return(l.UnsignedValue);
        }