Bike.Interpreter.Builtin.BikeObject.Exist C# (CSharp) Method

Exist() public method

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