ReadLocalSig() private method

private ReadLocalSig ( uint sigIx ) : Local[]
sigIx uint
return Local[]
Beispiel #1
0
 internal void Resolve(PEReader buff, MethodDef meth)
 {
     if (resolved) return;
     buff.currentMethodScope = meth;
     buff.currentClassScope = (Class)meth.GetParent();
     locals = buff.ReadLocalSig(sigIx);
     buff.currentMethodScope = null;
     buff.currentClassScope = null;
 }