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

SetLocal() 개인적인 메소드

private SetLocal ( int nlocal, object value ) : void
nlocal int
value object
리턴 void
        internal void SetLocal(int nlocal, object value)
        {
            if (nlocal < this.NoParentLocals)
                this.SetParentLocal(nlocal, value);
            else
                this.locals[nlocal - this.NoParentLocals] = value;
        }