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