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

TryGetMethod() 개인적인 메소드

private TryGetMethod ( string name, bool &skipHidden, IronRuby.Runtime.Calls.RubyMemberInfo &method ) : bool
name string
skipHidden bool
method IronRuby.Runtime.Calls.RubyMemberInfo
리턴 bool
        internal bool TryGetMethod(string/*!*/ name, ref bool skipHidden, out RubyMemberInfo method) {
            return TryGetMethod(name, ref skipHidden, false, out method);
        }

Same methods

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