Rhino.Ast.Scope.GetSymbol C# (CSharp) 메소드

GetSymbol() 공개 메소드

Looks up a symbol in this scope.
Looks up a symbol in this scope.
public GetSymbol ( string name ) : Symbol
name string the symbol name
리턴 Symbol
		public virtual Symbol GetSymbol(string name)
		{
			return symbolTable == null ? null : symbolTable.Get(name);
		}