1 override of IsGenericTypeDefinition
System.Private.CoreLib (1)
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeNamedTypeInfo.cs (1)
98public sealed override bool IsGenericTypeDefinition
11 references to IsGenericTypeDefinition
System.Private.CoreLib (11)
System\Reflection\Runtime\General\TypeUnifier.cs (1)
391if (genericTypeArgument.IsByRef || genericTypeArgument.IsGenericTypeDefinition)
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
30return IsGenericTypeDefinition;
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (8)
57public bool IsGenericType => IsGenericTypeDefinition || IsConstructedGenericType; 263if (!typeHandle.IsNull() && !IsGenericTypeDefinition) 323if (!(fromTypeInfo.IsGenericTypeDefinition || fromTypeInfo.IsPointer)) 398Debug.Assert(!IsGenericTypeDefinition && !IsConstructedGenericType); 426if (this.IsGenericTypeDefinition) 463if (!IsGenericTypeDefinition) 503if (runtimeTypeArgument.IsGenericTypeDefinition) 538if (!IsGenericTypeDefinition && ContainsGenericParameters)
System\RuntimeType.NativeAot.cs (1)
407return GetRuntimeTypeInfo().IsGenericTypeDefinition;