Arithmetica.MathExpressionContext.Forget C# (CSharp) 메소드

Forget() 공개 메소드

public Forget ( string variable ) : void
variable string
리턴 void
        public void Forget(string variable)
        {
            try
            {
                _lock.EnterWriteLock();

                if (_lookup.ContainsKey(variable))
                {
                    _lookup.Remove(variable);
                }
            }
            finally
            {
                _lock.ExitWriteLock();
            }
        }