MethodExtensions
Various extension methods for method reflection.
Returns method parameter types respecting order of parameters.
Determines whether the method parameters have the same set of types as in given array of types.
public static bool SignatureEquals(this MethodBase method, MethodBase other, bool respectCallingConvention = false)
Determines whether formal parameters of both methods are equal by type.
public static bool SignatureEquals(this MethodInfo method, MethodInfo other, bool respectCallingConvention = false)
Determines whether formal parameters of both methods are equal by type
and return types are also equal.
Invokes the method or constructor represented by the current instance, using the specified arguments.