<PackageReference Include="NETStandard.Library" Version="2.0.1" />

System.Reflection.MethodInfo

public abstract class MethodInfo : MethodBase
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); } }