コード例 #1
0
ファイル: PdbRecordInfo.cs プロジェクト: 13xforever/DeDRM
 public PdbRecordInfo(byte[] bytes)
 {
     if (bytes.Length != 8) throw new ArgumentException("Invalid data", "bytes");
     var offsetData = bytes.Take(4);
     if (BitConverter.IsLittleEndian) offsetData = offsetData.Reverse();
     offset = BitConverter.ToUInt32(offsetData.ToArray(), 0);
     flags = (PdbRecordAttributes)(bytes[4] >> 4 & 0x0f); //other bits are Category, which I don't know
     uniqueId = bytes[5] << 16 | bytes[6] << 8 | bytes[7];
 }
コード例 #2
0
ファイル: PdbRecordInfo.cs プロジェクト: hascist/DeDRM
        public PdbRecordInfo(byte[] bytes)
        {
            if (bytes.Length != 8)
            {
                throw new ArgumentException("Invalid data", "bytes");
            }
            var offsetData = bytes.Take(4);

            if (BitConverter.IsLittleEndian)
            {
                offsetData = offsetData.Reverse();
            }
            offset   = BitConverter.ToUInt32(offsetData.ToArray(), 0);
            flags    = (PdbRecordAttributes)(bytes[4] >> 4 & 0x0f);          //other bits are Category, which I don't know
            uniqueId = bytes[5] << 16 | bytes[6] << 8 | bytes[7];
        }
コード例 #3
0
ファイル: PdbRecordInfo.cs プロジェクト: 13xforever/DeDRM
 public PdbRecordInfo(long offset, byte flags, int uniqueId)
 {
     this.offset = offset;
     this.flags = (PdbRecordAttributes)(flags >> 4 & 0x0f);
     this.uniqueId = uniqueId;
 }
コード例 #4
0
ファイル: PdbRecordInfo.cs プロジェクト: hascist/DeDRM
 public PdbRecordInfo(long offset, byte flags, int uniqueId)
 {
     this.offset   = offset;
     this.flags    = (PdbRecordAttributes)(flags >> 4 & 0x0f);
     this.uniqueId = uniqueId;
 }