System.Reflection.Emit.TypeBuilder.GetConstructor C# (CSharp) Method

GetConstructor() public static method

public static GetConstructor ( System type, System constructor ) : System.Reflection.ConstructorInfo
type System
constructor System
return System.Reflection.ConstructorInfo
        public static System.Reflection.ConstructorInfo GetConstructor(System.Type type, System.Reflection.ConstructorInfo constructor) { throw null; }
        public static System.Reflection.FieldInfo GetField(System.Type type, System.Reflection.FieldInfo field) { throw null; }

Usage Example

示例#1
0
 protected override ConstructorInfo GetConstructorImpl(
     BindingFlags bindingAttr, Binder binder, CallingConventions callConvention,
     Type[] types, ParameterModifier[] modifiers)
 {
     return(_tb.GetConstructor(bindingAttr, binder, callConvention, types,
                               modifiers));
 }
All Usage Examples Of System.Reflection.Emit.TypeBuilder::GetConstructor