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

GetGUIDIx() private méthode

private GetGUIDIx ( ) : uint
Résultat uint
        internal uint GetGUIDIx()
        {
            /* pre:  buffer is at correct position to read GUID index */
            if (md.largeGUID) return ReadUInt32();
            return ReadUInt16();
        }

Usage Example

Exemple #1
0
 internal void Read(PEReader buff)
 {
     buff.ReadZeros(2);
     name = buff.GetString();
     mvid = buff.GetGUID();
     uint junk = buff.GetGUIDIx();
     junk = buff.GetGUIDIx();
     if (Diag.DiagOn) Console.WriteLine("Reading module with name " + name + " and Mvid = " + mvid);
     ismscorlib = name.ToLower() == "mscorlib.dll";
 }
All Usage Examples Of PERWAPI.PEReader::GetGUIDIx