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