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