2 overrides of WithTypeArguments
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
3391
public override SyntaxNode
WithTypeArguments
(SyntaxNode expression, IEnumerable<SyntaxNode> typeArguments)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
CodeGeneration\VisualBasicSyntaxGenerator.vb (1)
602
Public Overrides Function
WithTypeArguments
(name As SyntaxNode, typeArguments As IEnumerable(Of SyntaxNode)) As SyntaxNode
2 references to WithTypeArguments
Microsoft.CodeAnalysis.CSharp.Features (1)
CodeRefactorings\ConvertLocalFunctionToMethod\CSharpConvertLocalFunctionToMethodCodeRefactoringProvider.cs (1)
190
currentNode = generator.
WithTypeArguments
(currentNode, typeArguments);
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1863
=>
WithTypeArguments
(expression, (IEnumerable<SyntaxNode>)typeArguments);