PERWAPI.ConstantElem.Read C# (CSharp) Method

Read() static private method

static private Read ( PEReader buff, TableRow consts ) : void
buff PEReader
consts TableRow
return void
        internal static void Read(PEReader buff, TableRow[] consts)
        {
            for (int i=0; i < consts.Length; i++)
                consts[i] = new ConstantElem(buff);
        }