Base:
method
ToString
Microsoft.CodeAnalysis.GreenNode.ToString()
5 references to ToString
Microsoft.CodeAnalysis.CSharp (5)
Parser\DirectiveParser.cs (1)
854string text = identifier.ToString();
Parser\DocumentationCommentParser.cs (1)
402token = this.WithXmlParseError(token, error, token.ToString());
Parser\LanguageParser.cs (1)
14264node = this.AddError(node, ErrorCode.ERR_UnexpectedToken, trailingTrash[0].ToString());
Syntax\InternalSyntax\TypeSyntax.cs (1)
17private bool IsIdentifierName(string id) => this is IdentifierNameSyntax name && name.Identifier.ToString() == id;
Syntax\ShebangDirectiveTriviaSyntax.cs (1)
43endOfDirectiveToken = endOfDirectiveToken.TokenWithLeadingTrivia(SyntaxFactory.PreprocessingMessage(content.ToString()));