System.Reflection.MethodInfo
namespace System.Reflection
{
public abstract class MethodInfo : MethodBase
{
public virtual ParameterInfo ReturnParameter { get; }
public virtual Type ReturnType { get; }
public abstract ICustomAttributeProvider ReturnTypeCustomAttributes { get; }
protected MethodInfo();
public virtual Delegate CreateDelegate(Type delegateType);
public virtual Delegate CreateDelegate(Type delegateType, object target);
public abstract MethodInfo GetBaseDefinition();
public virtual MethodInfo GetGenericMethodDefinition();
public virtual MethodInfo MakeGenericMethod(params Type[] typeArguments);
public static bool operator ==(MethodInfo left, MethodInfo right);
public static bool operator !=(MethodInfo left, MethodInfo right);
}
}