AjTalk.Language.ExecutionContext.GetLocal C# (CSharp) 메소드

GetLocal() 개인적인 메소드

private GetLocal ( int nlocal ) : object
nlocal int
리턴 object
        internal object GetLocal(int nlocal)
        {
            if (nlocal < this.NoParentLocals)
                return this.GetParentLocal(nlocal);
            return this.locals[nlocal - this.NoParentLocals];
        }