9 references to TypeParameters
Microsoft.Interop.ComInterfaceGenerator (2)
ComClassGenerator.cs (1)
93writer.WriteLine($"{string.Join(" ", classSyntax.Modifiers)} class {classSyntax.Identifier}{classSyntax.TypeParameters} {{ }}");
ComInterfaceGenerator.cs (1)
620writer.WriteLine($"{string.Join(" ", syntax.Modifiers.AddToModifiers(SyntaxKind.UnsafeKeyword))} {syntax.TypeKind.GetDeclarationKeyword()} {syntax.Identifier}{syntax.TypeParameters}");
Microsoft.Interop.SourceGeneration (7)
ContainingSyntaxContext.cs (7)
33&& SyntaxEquivalentComparer.Instance.Equals(TypeParameters, other.TypeParameters); 115if (containingType.TypeParameters is not null) 117type = type.AddTypeParameterListParameters(containingType.TypeParameters.Parameters.ToArray()); 141if (containingType.TypeParameters is not null) 143type = type.AddTypeParameterListParameters(containingType.TypeParameters.Parameters.ToArray()); 172writer.WriteLine($"{string.Join(" ", syntax.Modifiers.AddToModifiers(SyntaxKind.UnsafeKeyword))} {syntax.TypeKind.GetDeclarationKeyword()} {syntax.Identifier}{syntax.TypeParameters}");