1 override of IsUnboundGenericType
Microsoft.CodeAnalysis.CSharp (1)
Symbols\SubstitutedNamedTypeSymbol.cs (1)
71public sealed override bool IsUnboundGenericType
12 references to IsUnboundGenericType
Microsoft.CodeAnalysis.CSharp (12)
Binder\Binder_Expressions.cs (1)
6912else if (coClassType.IsUnboundGenericType)
Binder\Binder_Symbols.cs (1)
1594((NamedTypeSymbol)left).IsUnboundGenericType;
Emitter\Model\PEModuleBuilder.cs (1)
1002if (namedTypeSymbol.IsUnboundGenericType)
Lowering\AsyncRewriter\AsyncMethodBuilderMemberCollection.cs (1)
350if (builderType.IsUnboundGenericType && builderType.ContainingType?.IsGenericType != true && builderType.Arity == 1)
Symbols\AbstractTypeMap.cs (1)
46if (previous.IsUnboundGenericType)
Symbols\NamedTypeSymbol.cs (3)
866if (this.IsUnboundGenericType != other.IsUnboundGenericType) 1638if (!IsUnboundGenericType &&
Symbols\PublicModel\NamedTypeSymbol.cs (1)
187bool INamedTypeSymbol.IsUnboundGenericType => UnderlyingNamedTypeSymbol.IsUnboundGenericType;
Symbols\Retargeting\RetargetingSymbolTranslator.cs (1)
500if (type.IsUnboundGenericType)
Symbols\Symbol.cs (1)
1315if (modifierType.IsUnboundGenericType)
Symbols\TypeSymbolExtensions.cs (1)
1183return type is NamedTypeSymbol { IsUnboundGenericType: true };