System.Reflection.Module.GetMethod C# (CSharp) Method

GetMethod() public method

public GetMethod ( String name ) : MethodInfo
name String
return MethodInfo
        public MethodInfo GetMethod(String name)
        {
            if (name == null)
                throw new ArgumentNullException("name");
            return GetMethodImpl(name,Module.DefaultLookup,null,CallingConventions.Any,
                null,null);
        }
            

Same methods

Module::GetMethod ( String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type types, ParameterModifier modifiers ) : MethodInfo
Module::GetMethod ( String name, Type types ) : MethodInfo