GetBlobNativeType() 개인적인 메소드

private GetBlobNativeType ( ) : NativeType
리턴 NativeType
예제 #1
0
파일: PERWAPI.cs 프로젝트: nomit007/f4
 internal override void Resolve(PEReader buff)
 {
     field = buff.GetCodedElement(CIx.HasFieldMarshal,parentIx);
     nt = buff.GetBlobNativeType(ntIx);
     if (field is FieldDef) {
         ((FieldDef)field).SetMarshalType(nt);
     } else {
         ((Param)field).SetMarshalType(nt);
     }
 }