AjTalk.Language.ExecutionContext.GetLocal C# (CSharp) Méthode

GetLocal() private méthode

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