Esempio n. 1
0
 GetConstructorImpl(BindingFlags bindingAttr,
                    Binder binder,
                    CallingConventions callingConventions,
                    Type[] types,
                    ParameterModifier[] modifiers)
 {
     CheckCreated();
     return(type.GetConstructor(bindingAttr, binder,
                                callingConventions,
                                types, modifiers));
 }
Esempio n. 2
0
 /// <summary>
 ///
 /// </summary>
 public object CreateInstance()
 {
     return(ClrType.GetConstructor(Type.EmptyTypes)?.Invoke(null));
 }