PERWAPI.PEReader.GetCodedIndex C# (CSharp) Méthode

GetCodedIndex() private méthode

private GetCodedIndex ( CIx codedIx ) : uint
codedIx CIx
Résultat uint
        internal uint GetCodedIndex(CIx codedIx)
        {
            if (md.lgeCIx[(int)codedIx]) return ReadUInt32();
            return ReadUInt16();
        }

Usage Example

Exemple #1
0
 internal CustomAttribute(PEReader buff)
 {
     parentIx = buff.GetCodedIndex(CIx.HasCustomAttr);
     typeIx = buff.GetCodedIndex(CIx.CustomAttributeType);
     valIx = buff.GetBlobIx();
     sortTable = true;
     tabIx = MDTable.CustomAttribute;
 }
All Usage Examples Of PERWAPI.PEReader::GetCodedIndex