4 types derived from RuntimeConstructorInfo
System.Private.CoreLib (4)
System\Reflection\Runtime\General\Dispensers.cs (2)
107
internal sealed partial class RuntimePlainConstructorInfo<TRuntimeMethodCommon> :
RuntimeConstructorInfo
118
internal sealed partial class RuntimeSyntheticConstructorInfo :
RuntimeConstructorInfo
System\Reflection\Runtime\MethodInfos\RuntimePlainConstructorInfo.cs (1)
20
internal sealed partial class RuntimePlainConstructorInfo<TRuntimeMethodCommon> :
RuntimeConstructorInfo
where TRuntimeMethodCommon : IRuntimeMethodCommon<TRuntimeMethodCommon>, IEquatable<TRuntimeMethodCommon>
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticConstructorInfo.cs (1)
20
internal sealed partial class RuntimeSyntheticConstructorInfo :
RuntimeConstructorInfo
, IRuntimeMemberInfoWithNoMetadataDefinition
10 references to RuntimeConstructorInfo
System.Private.CoreLib (10)
Internal\Reflection\Augments\ReflectionAugments.cs (1)
391
case
RuntimeConstructorInfo
constructorInfo:
System\Reflection\ConstructorInvoker.cs (2)
19
internal ConstructorInvoker(
RuntimeConstructorInfo
constructor)
27
if (constructor is not
RuntimeConstructorInfo
runtimeConstructor)
System\Reflection\MethodInvoker.cs (2)
25
internal MethodInvoker(
RuntimeConstructorInfo
constructor)
39
if (method is
RuntimeConstructorInfo
rci)
System\Reflection\Runtime\TypeInfos\RuntimeArrayTypeInfo.cs (1)
45
internal sealed override IEnumerable<
RuntimeConstructorInfo
> SyntheticConstructors
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.CoreGetDeclared.cs (2)
42
Debug.Assert(object.ReferenceEquals(SyntheticConstructors, Array.Empty<
RuntimeConstructorInfo
>()));
52
foreach (
RuntimeConstructorInfo
syntheticConstructor in SyntheticConstructors)
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (2)
659
internal virtual IEnumerable<
RuntimeConstructorInfo
> SyntheticConstructors
663
return Array.Empty<
RuntimeConstructorInfo
>();