Given that I have created a symbol using SymbolFactory.CreateProperty, how would I add white space. Currently I get accessibility, modifiers, name, type etc. all stringed to
I had the same issue, and I found this to work the best:
node.WithTrailingTrivia(SyntaxFactory.Space)
where node is a SyntaxToken of any kind.
SyntaxToken