PERWAPI.TypeSpec.Read C# (CSharp) Méthode

Read() static private méthode

static private Read ( PEReader buff, TableRow specs ) : void
buff PEReader
specs TableRow
Résultat void
        internal static void Read(PEReader buff, TableRow[] specs)
        {
            for (int i=0; i < specs.Length; i++) {
                specs[i] = new UnresolvedTypeSpec(buff,i);
                //specs[i] = buff.GetBlobType(null,null,buff.GetBlobIx());
                //if (specs[i] is GenericParam) {
                //  Console.WriteLine("GenericParam in TypeSpec table at pos " + i);
                //}
            }
        }