2 types derived from UnboundGenericType
Microsoft.CodeAnalysis.VisualBasic (2)
Symbols\UnboundGenericType.vb (2)
342Inherits UnboundGenericType 542Inherits UnboundGenericType
2 instantiations of UnboundGenericType
Microsoft.CodeAnalysis.VisualBasic (2)
Symbols\UnboundGenericType.vb (2)
351MyBase.New() 549MyBase.New()
18 references to UnboundGenericType
Microsoft.CodeAnalysis.VisualBasic (14)
Symbols\Metadata\PE\SymbolFactory.vb (1)
145Return If(namedType IsNot Nothing AndAlso namedType.IsGenericType, UnboundGenericType.Create(namedType), type)
Symbols\NamedTypeSymbolExtensions.vb (1)
78Return UnboundGenericType.Create(this)
Symbols\SubstitutedTypeParameterSymbol.vb (3)
69(TypeOf container Is UnboundGenericType AndAlso DirectCast(container, UnboundGenericType).Arity > 0 AndAlso 70DirectCast(container, UnboundGenericType).ConstructedFrom Is container))
Symbols\UnboundGenericType.vb (9)
34Dim specialized = TryCast(type, UnboundGenericType.ConstructedFromSymbol) 41Return New UnboundGenericType.ConstructedSymbol(type.OriginalDefinition) 288Return Equals(TryCast(other, UnboundGenericType), comparison) 291Public Overloads Function Equals(other As UnboundGenericType, comparison As TypeCompareKind) As Boolean 384result = UnboundGenericType.Create(originalDefinitionContainingType) 411result = New UnboundGenericType.ConstructedFromSymbol(Me) 454Dim containerAsConstructed = TryCast(container, UnboundGenericType.ConstructedSymbol) 520members(i) = (New UnboundGenericType.ConstructedSymbol(originalTypeMembers(i))).ConstructedFrom 531Return OriginalDefinition.GetTypeMembers(name, arity).SelectAsArray(Function(t) (New UnboundGenericType.ConstructedSymbol(t)).ConstructedFrom)
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (3)
Attributes\AttributeTests.vb (2)
1951Dim arg = DirectCast(gt.Value, UnboundGenericType) 2003Dim arg = DirectCast(gt.Value, UnboundGenericType)
Attributes\AttributeTests_WellKnownAttributes.vb (1)
3369Dim arg = DirectCast(gt.Value, UnboundGenericType)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (1)
SymbolsTests\InstantiatingGenerics.vb (1)
152Assert.Same(UnboundGenericType.UnboundTypeArgument, typeArgument)