Example #1
0
 public MethodInvoker(MethodInfo Method)
 {
     methodHandler = BaseMethodInvoker.GetMethodInvoker(Method);
 }
Example #2
0
 public static FastInvokeHandler GetPropertyInvoker(Type TargetType, PropertyInfo Property)
 {
     return(BaseMethodInvoker.GetMethodInvoker(TargetType.GetMethod("get_" + Property.Name)));
 }
Example #3
0
 public MethodInvoker(string Method)
 {
     methodHandler = BaseMethodInvoker.GetMethodInvoker(typeof(TargetObjectType).GetMethod(Method));
 }