GetBlobConst() private method

private GetBlobConst ( int constType ) : Constant
constType int
return Constant
コード例 #1
0
ファイル: PERWAPI.cs プロジェクト: nomit007/f4
 internal ConstantElem(PEReader buff)
 {
     byte constType = buff.ReadByte();
     byte pad = buff.ReadByte();
     parentIx = buff.GetCodedIndex(CIx.HasConstant);
     //valIx = buff.GetBlobIx();
     cValue = buff.GetBlobConst(constType);
     sortTable = true;
     tabIx = MDTable.Constant;
 }