Base:
method
ToString
Microsoft.CodeAnalysis.GreenNode.ToString()
4 references to ToString
Microsoft.CodeAnalysis.CSharp (4)
Parser\DirectiveParser.cs (1)
823string text = identifier.ToString();
Parser\DocumentationCommentParser.cs (1)
407token = this.WithXmlParseError(token, error, token.ToString());
Parser\LanguageParser.cs (1)
13184node = 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;