9 references to TypeParameters
Microsoft.Interop.ComInterfaceGenerator (2)
ComClassGenerator.cs (1)
100
writer.WriteLine($"{string.Join(" ", classSyntax.Modifiers)} class {classSyntax.Identifier}{classSyntax.
TypeParameters
} {{ }}");
ComInterfaceGenerator.cs (1)
901
writer.WriteLine($"{string.Join(" ", typeModifiers)} {syntax.TypeKind.GetDeclarationKeyword()} {syntax.Identifier}{syntax.
TypeParameters
}");
Microsoft.Interop.SourceGeneration (7)
ContainingSyntaxContext.cs (7)
33
&& SyntaxEquivalentComparer.Instance.Equals(
TypeParameters
, other.
TypeParameters
);
113
if (containingType.
TypeParameters
is not null)
115
type = type.AddTypeParameterListParameters(containingType.
TypeParameters
.Parameters.ToArray());
160
if (containingType.
TypeParameters
is not null)
162
type = type.AddTypeParameterListParameters(containingType.
TypeParameters
.Parameters.ToArray());
195
writer.WriteLine($"{string.Join(" ", modifiers)} {syntax.TypeKind.GetDeclarationKeyword()} {syntax.Identifier}{syntax.
TypeParameters
}");