AjScript.Context.RemoveValue C# (CSharp) 메소드

RemoveValue() 공개 메소드

public RemoveValue ( string name ) : void
name string
리턴 void
        public void RemoveValue(string name)
        {
            if (this.values.ContainsKey(name))
                this.values.Remove(name);
            else if (this.parent != null)
                this.parent.RemoveValue(name);
        }