1 override of IsConstructedGenericType
System.Private.CoreLib (1)
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.cs (1)
30public override bool IsConstructedGenericType => true;
6 references to IsConstructedGenericType
System.Private.CoreLib (6)
Internal\Reflection\Augments\ReflectionAugments.cs (1)
440if (runtimeTypeInfo.IsConstructedGenericType)
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
92Debug.Assert(!IsConstructedGenericType);
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (3)
57public bool IsGenericType => IsGenericTypeDefinition || IsConstructedGenericType; 398Debug.Assert(!IsGenericTypeDefinition && !IsConstructedGenericType); 613Debug.Assert(!IsConstructedGenericType);
System\RuntimeType.NativeAot.cs (1)
418return GetRuntimeTypeInfo().IsConstructedGenericType;