IronRuby.Compiler.Methods.GetMethod C# (CSharp) Метод

GetMethod() статический приватный Метод

static private GetMethod ( Type type, string name ) : MethodInfo
type System.Type
name string
Результат System.Reflection.MethodInfo
        internal static MethodInfo/*!*/ GetMethod(Type/*!*/ type, string/*!*/ name) {
            var method = type.GetMethod(name, BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance | BindingFlags.DeclaredOnly);
            Debug.Assert(method != null, type.Name + "::" + name);
            return method;
        }

Same methods

Methods::GetMethod ( Type type, string name, BindingFlags flags ) : MethodInfo