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];
        }