Exemple #1
0
 public BigEnd64(byte[] data, int offset)
 {
     this._unsignedlong = 0;
     this._signedlong   = 0;
     this._low          = new BigEnd32(data, offset);
     this._hi           = new BigEnd32(data, offset + 4);
 }
Exemple #2
0
        public int ReadInt32()
        {
            byte[] data = new byte[4];
            this.BaseStream.Read(data, 0, 4);
            BigEnd32 l = new BigEnd32(data, 0);

            return(l.SignedValue);
        }