GetBlobConst() 개인적인 메소드

private GetBlobConst ( int constType ) : Constant
constType int
리턴 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;
 }