Beispiel #1
0
 /// <summary>
 ///     Initializes the class with the default values.
 /// </summary>
 public BaseMethodInvoke()
 {
     // HACK: Set the ReflectionMethodBuilder as the default builder
     if (typeof(TMethod) == typeof(MethodInfo))
     {
         MethodBuilder = new ReflectionMethodBuilder <MethodInfo>() as IMethodBuilder <TMethod>;
     }
 }
 /// <summary>
 /// Initializes the class with the default values.
 /// </summary>
 public ConstructorInvoke()
 {
     MethodBuilder = new ReflectionMethodBuilder <ConstructorInfo>();
 }