IronRuby.Builtins.RubyModule.TryGetDefinedMethod C# (CSharp) Метод

TryGetDefinedMethod() приватный Метод

private TryGetDefinedMethod ( string name, IronRuby.Runtime.Calls.RubyMemberInfo &method ) : bool
name string
method IronRuby.Runtime.Calls.RubyMemberInfo
Результат bool
        internal bool TryGetDefinedMethod(string/*!*/ name, out RubyMemberInfo method) {
            Context.RequiresClassHierarchyLock();
            if (_methods == null) {
                method = null;
                return false;
            }
            return _methods.TryGetValue(name, out method);
        }

Same methods

RubyModule::TryGetDefinedMethod ( string name, bool &skipHidden, IronRuby.Runtime.Calls.RubyMemberInfo &method ) : bool
RubyModule