Beispiel #1
0
 public static ConstructorInfoEx GetConstructorEx(this ConstructorInfo constructorInfo, bool enableCaching = true)
 {
     if (enableCaching)
     {
         return(ConstructorInfoExCache.GetConstructorEx(constructorInfo));
     }
     else
     {
         return(new ConstructorInfoEx(constructorInfo, false));
     }
 }
Beispiel #2
0
 public static ConstructorInfoEx GetConstructorEx(this Type type, IEnumerable <Type> signature, BindingFlags bindingFlags = PUBLIC_ISTANCE_STATIC, bool enableCaching = true)
 {
     if (enableCaching)
     {
         return(ConstructorInfoExCache.GetConstructorEx(type, signature, bindingFlags));
     }
     else
     {
         var f = type.GetConstructor(bindingFlags, null, signature?.ToArray() ?? Type.EmptyTypes, null);
         if (f == null)
         {
             return(null);
         }
         return(new ConstructorInfoEx(f, false));
     }
 }