PERWAPI.CalliSig.Resolve C# (CSharp) Method

Resolve() final private method

final private Resolve ( PEReader buff ) : void
buff PEReader
return void
        internal override sealed void Resolve(PEReader buff)
        {
            MethSig mSig = buff.ReadMethSig(null,sigIx);
            callConv = mSig.callConv;
            retType = mSig.retType;
            parTypes = mSig.parTypes;
            if (parTypes != null) numPars = (uint)parTypes.Length;
            optParTypes = mSig.optParTypes;
            if (optParTypes != null) numOptPars = (uint)optParTypes.Length;
        }