ReadMethSpecSig() private method

private ReadMethSpecSig ( uint blobIx ) : Type[]
blobIx uint
return Type[]
Beispiel #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();
     instTypes = buff.ReadMethSpecSig(instIx);
     this.unresolved = false;
     buff.currentMethodScope = null;
     buff.currentClassScope = null;
 }