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

TryResolveConstantNoLock() 개인적인 메소드

Get constant defined in this module or any of its ancestors.
private TryResolveConstantNoLock ( RubyGlobalScope autoloadScope, string name, IronRuby.Runtime.ConstantStorage &value ) : bool
autoloadScope IronRuby.Runtime.RubyGlobalScope
name string
value IronRuby.Runtime.ConstantStorage
리턴 bool
        internal bool TryResolveConstantNoLock(RubyGlobalScope autoloadScope, string/*!*/ name, out ConstantStorage value) {
            Context.RequiresClassHierarchyLock();
            return TryLookupConstantNoLock(true, true, autoloadScope, name, out value) != ConstantLookupResult.NotFound;
        }
RubyModule