public static ReflectionsUtils.ConstructorDelegate GetContructor(Type type, params Type[] argsType)
 {
     return(ReflectionsUtils.GetConstructorByReflection(type, argsType));
 }
    public static ReflectionsUtils.ConstructorDelegate GetConstructorByReflection(Type type, params Type[] argsType)
    {
        ConstructorInfo constructorInfo = ReflectionsUtils.GetConstructorInfo(type, argsType);

        return((constructorInfo != null) ? ReflectionsUtils.GetConstructorByReflection(constructorInfo) : null);
    }
 public static ReflectionsUtils.ConstructorDelegate GetContructor(ConstructorInfo constructorInfo)
 {
     return(ReflectionsUtils.GetConstructorByReflection(constructorInfo));
 }