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)
39
public sealed override bool
IsConstructedGenericType
=> true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureFunctionPointerType.cs (1)
36
public override bool
IsConstructedGenericType
=> false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureGenericParameterType.cs (1)
26
public sealed override bool
IsConstructedGenericType
=> false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureHasElementType.cs (1)
26
public sealed override bool
IsConstructedGenericType
=> false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
36
public 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)
33
public sealed override bool IsGenericType => IsGenericTypeDefinition ||
IsConstructedGenericType
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureTypeExtensions.cs (2)
50
else if (pattern.
IsConstructedGenericType
)
129
else if (signatureType.
IsConstructedGenericType
)