Bike.Interpreter.Builtin.BikeObject.Exist C# (CSharp) 메소드

Exist() 공개 메소드

public Exist ( string name ) : bool
name string
리턴 bool
        public virtual bool Exist(string name)
        {
            var scope = FindScopeFor(name);
            return scope != null;
        }