GetConstructor() 공개 정적인 메소드

public static GetConstructor ( System type, System constructor ) : System.Reflection.ConstructorInfo
type System
constructor System
리턴 System.Reflection.ConstructorInfo
예제 #1
0
 protected override ConstructorInfo GetConstructorImpl(
     BindingFlags bindingAttr, Binder binder, CallingConventions callConvention,
     Type[] types, ParameterModifier[] modifiers)
 {
     return(_tb.GetConstructor(bindingAttr, binder, callConvention, types,
                               modifiers));
 }
예제 #2
0
 GetConstructorImpl(BindingFlags bindingAttr,
                    Binder binder,
                    CallingConventions callingConventions,
                    Type[] types,
                    ParameterModifier[] modifiers)
 {
     return(builder.GetConstructor
                (bindingAttr, binder, callingConventions,
                types, modifiers));
 }