Base:
property
IsConstructedGenericType
System.Type.IsConstructedGenericType
5 overrides of IsConstructedGenericType
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureConstructedGenericType.cs (1)
39public sealed override bool IsConstructedGenericType => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureFunctionPointerType.cs (1)
36public override bool IsConstructedGenericType => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureGenericParameterType.cs (1)
26public sealed override bool IsConstructedGenericType => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureHasElementType.cs (1)
26public sealed override bool IsConstructedGenericType => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
36public override bool IsConstructedGenericType => _unmodifiedType.IsConstructedGenericType;
3 references to IsConstructedGenericType
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
33public sealed override bool IsGenericType => IsGenericTypeDefinition || IsConstructedGenericType;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureTypeExtensions.cs (2)
50else if (pattern.IsConstructedGenericType) 129else if (signatureType.IsConstructedGenericType)