Ejemplo n.º 1
0
 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));
 }
Ejemplo n.º 2
0
 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));
 }
Ejemplo n.º 3
0
 public static MethodInfo Method(Expression <Action <T> > func)
 {
     return(Expressor.Method <T>(func));
 }
Ejemplo n.º 4
0
 public static MethodInfo Method(Expression <Func <T, object> > func)
 {
     return(Expressor.Method <T>(func));
 }