2 instantiations of ConstructorBuilderImpl
System.Reflection.Emit (2)
System\Reflection\Emit\TypeBuilderImpl.cs (2)
192ConstructorBuilderImpl constBuilder = new ConstructorBuilderImpl(name, attributes, callingConvention, 425return new ConstructorBuilderImpl(ConstructorInfo.TypeConstructorName, attr, CallingConventions.Standard, null, null, null, _module, this);
10 references to ConstructorBuilderImpl
System.Reflection.Emit (10)
System\Reflection\Emit\ILGeneratorImpl.cs (1)
448if (con is ConstructorBuilderImpl builder)
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
1037if (member is ConstructorBuilderImpl ctor && Equals(ctor.Module)) 1161if (constructor is ConstructorBuilderImpl cb && Equals(cb.Module))
System\Reflection\Emit\TypeBuilderImpl.cs (7)
37internal readonly List<ConstructorBuilderImpl> _constructorDefinitions = new(); 192ConstructorBuilderImpl constBuilder = new ConstructorBuilderImpl(name, attributes, callingConvention, 210private ConstructorBuilderImpl DefineDefaultConstructorInternal(MethodAttributes attributes) 231ConstructorBuilderImpl constBuilder = (ConstructorBuilderImpl)DefineConstructorCore(attributes, CallingConventions.Standard, null, null, null); 678foreach (ConstructorBuilderImpl con in _constructorDefinitions) 781foreach (ConstructorBuilderImpl con in _constructorDefinitions)