Exemplo n.º 1
0
 internal override void Resolve(PEReader buff)
 {
     methParent = (Method)buff.GetCodedElement(CIx.MethodDefOrRef, parentIx);
       buff.currentMethodScope = methParent;  // set scopes - Fix by CK
       buff.currentClassScope = (Class)methParent.GetParent();
       //
       // EXPERIMENTAL: The signature of the methParent must be
       // visible as the signature of this MethodSpec.  The type-actuals
       // are held in the instTypes array.
       this.sig = this.methParent.GetSig(buff);
       instTypes = buff.ReadMethSpecSig(instIx);
       this.unresolved = false;
       //
       buff.currentMethodScope = null;
       buff.currentClassScope = null;
 }