Base:
7 overrides of IsConstructedGenericType
System.Reflection.MetadataLoadContext (7)
System\Reflection\TypeLoading\Types\RoConstructedGenericType.cs (1)
40public sealed override bool IsConstructedGenericType => true;
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
30public sealed override bool IsConstructedGenericType => false;
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
146public sealed override bool IsConstructedGenericType => false;
System\Reflection\TypeLoading\Types\RoGenericParameterType.cs (1)
30public sealed override bool IsConstructedGenericType => false;
System\Reflection\TypeLoading\Types\RoHasElementType.cs (1)
29public sealed override bool IsConstructedGenericType => false;
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
133public override bool IsConstructedGenericType => _unmodifiedType.IsConstructedGenericType;
System\Reflection\TypeLoading\Types\RoStubType.cs (1)
26public sealed override bool IsConstructedGenericType => throw null!;
2 references to IsConstructedGenericType
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
133public override bool IsConstructedGenericType => _unmodifiedType.IsConstructedGenericType;
System\Reflection\TypeLoading\Types\RoType.cs (1)
100public sealed override bool IsGenericType => IsConstructedGenericType || IsGenericTypeDefinition;