1 implementation of IsIdentifierPartCharacter
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
451public bool IsIdentifierPartCharacter(char c)
4 references to IsIdentifierPartCharacter
Microsoft.CodeAnalysis.Features (2)
Completion\Providers\CompletionUtilities.cs (1)
88while (end < text.Length && syntaxFacts.IsIdentifierPartCharacter(text[end]))
Snippets\SnippetUtilities.cs (1)
22if (!syntaxFactsService.IsIdentifierPartCharacter(c) && c != '#' && c != '~')
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\Finders\AbstractReferenceFinder_GlobalSuppressions.cs (1)
221if (ch == '#' || syntaxFacts.IsIdentifierPartCharacter(ch))
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
263if (!syntaxFacts.IsIdentifierPartCharacter(name[i]))