Esempio n. 1
0
 internal ConstantElem(PEReader buff)
 {
     Contract.Requires(buff != null);
     byte constType = buff.ReadByte();
     byte pad = buff.ReadByte();
     parentIx = buff.GetCodedIndex(CIx.HasConstant);
     //valIx = buff.GetBlobIx();
     cValue = buff.GetBlobConst(constType);
     tabIx = MDTable.Constant;
 }