Ejemplo n.º 1
0
    public static ReflectionsUtils.ConstructorDelegate GetConstructorByReflection(Type type, params Type[] argsType)
    {
        ConstructorInfo constructorInfo = ReflectionsUtils.GetConstructorInfo(type, argsType);

        return((constructorInfo != null) ? ReflectionsUtils.GetConstructorByReflection(constructorInfo) : null);
    }