IronRuby.Builtins.RubyModule.TryGetConstantNoAutoloadNoInit C# (CSharp) 메소드

TryGetConstantNoAutoloadNoInit() 개인적인 메소드

private TryGetConstantNoAutoloadNoInit ( string name, IronRuby.Runtime.ConstantStorage &storage ) : bool
name string
storage IronRuby.Runtime.ConstantStorage
리턴 bool
        internal bool TryGetConstantNoAutoloadNoInit(string/*!*/ name, out ConstantStorage storage) {
            Context.RequiresClassHierarchyLock();
            storage = default(ConstantStorage);
            return _constants != null && _constants.TryGetValue(name, out storage) && !storage.IsRemoved;
        }
RubyModule