1 implementation of GetPartsOfGenericName
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1589
public void
GetPartsOfGenericName
(SyntaxNode node, out SyntaxToken identifier, out SeparatedSyntaxList<SyntaxNode> typeArguments)
2 references to GetPartsOfGenericName
Microsoft.CodeAnalysis.CodeStyle (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (2)
521
syntaxFacts.
GetPartsOfGenericName
(node, out var identifier, out _);
596
syntaxFacts.
GetPartsOfGenericName
(node, out _, out var typeArguments);