While.SymbolTable.IsDeclaredInCurrentScope C# (CSharp) Метод

IsDeclaredInCurrentScope() публичный Метод

public IsDeclaredInCurrentScope ( string name ) : bool
name string
Результат bool
        public bool IsDeclaredInCurrentScope(string name)
        {
            return _stack.Count > 0 && _stack[_stack.Count - 1].ContainsKey(name) || _args.Contains(name);
        }