Beispiel #1
0
 public static EfficientInvoker GetPropertyInvoker(this Type type, string propertyName)
 {
     return(EfficientInvoker.ForProperty(type, propertyName));
 }
Beispiel #2
0
 public static EfficientInvoker GetMethodInvoker(this Type type, string methodName)
 {
     return(EfficientInvoker.ForMethod(type, methodName));
 }
Beispiel #3
0
 public static EfficientInvoker GetMethodInvoker(this Type type, MethodInfo method)
 {
     return(EfficientInvoker.ForMethod(type, method));
 }
 public static EfficientInvoker GetInvoker(this Delegate del)
 {
     return(EfficientInvoker.ForDelegate(del));
 }