Base:
4 overrides of IsConstructedGenericMethod
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\General\Sentinels.cs (1)
34
public sealed override bool
IsConstructedGenericMethod
=> throw null!;
System\Reflection\TypeLoading\Methods\RoConstructedGenericMethod.cs (1)
34
public sealed override bool
IsConstructedGenericMethod
=> true;
System\Reflection\TypeLoading\Methods\RoDefinitionMethod.cs (1)
96
public sealed override bool
IsConstructedGenericMethod
=> false;
System\Reflection\TypeLoading\Methods\RoSyntheticMethod.cs (1)
85
public sealed override bool
IsConstructedGenericMethod
=> false;
1 reference to IsConstructedGenericMethod
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
51
public sealed override bool IsGenericMethod => IsGenericMethodDefinition ||
IsConstructedGenericMethod
;