public static MethodInfo Method <T2, T3, T4, T5>(Expression <Action <T, T2, T3, T4, T5> > func) { return(Expressor.Method <T, T2, T3, T4, T5>(func)); }
public static MethodInfo Method <T2, T3, T4, T5>(Expression <Func <T, T2, T3, T4, T5, object> > func) { return(Expressor.Method <T, T2, T3, T4, T5>(func)); }
public static MethodInfo Method(Expression <Action <T> > func) { return(Expressor.Method <T>(func)); }
public static MethodInfo Method(Expression <Func <T, object> > func) { return(Expressor.Method <T>(func)); }