public static EfficientInvoker GetPropertyInvoker(this Type type, string propertyName) { return(EfficientInvoker.ForProperty(type, propertyName)); }
public static EfficientInvoker GetMethodInvoker(this Type type, string methodName) { return(EfficientInvoker.ForMethod(type, methodName)); }
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)); }