10 references to TypeParameters
Microsoft.Interop.ComInterfaceGenerator (3)
ComClassGenerator.cs (1)
93
writer.WriteLine($"{string.Join(" ", classSyntax.Modifiers)} class {classSyntax.Identifier}{classSyntax.
TypeParameters
} {{ }}");
ComInterfaceGenerator.cs (2)
227
.WithTypeParameterList(context.ContainingSyntax.
TypeParameters
)
236
.WithTypeParameterList(containingSyntax.
TypeParameters
)
Microsoft.Interop.SourceGeneration (7)
ContainingSyntaxContext.cs (7)
33
&& SyntaxEquivalentComparer.Instance.Equals(
TypeParameters
, other.
TypeParameters
);
115
if (containingType.
TypeParameters
is not null)
117
type = type.AddTypeParameterListParameters(containingType.
TypeParameters
.Parameters.ToArray());
141
if (containingType.
TypeParameters
is not null)
143
type = type.AddTypeParameterListParameters(containingType.
TypeParameters
.Parameters.ToArray());
182
writer.WriteLine($"{string.Join(" ", syntax.Modifiers.AddToModifiers(SyntaxKind.UnsafeKeyword))} {declarationKeyword} {syntax.Identifier}{syntax.
TypeParameters
}");