0 comments (0 comments)0 reactions (0 reactions)0 assignees (0 assignees)C#20,414 stars (20,414 stars)4,257 forks (4,257 forks)batch import
Area-InteractiveBugInteractive-ScriptingIDEhelp wanted
- Issue 種別
- bug
- 調査方針
- The issue is about preventing the suggestion of an alias that is not a valid identifier. Look at the completion provider in Roslyn that handles extern alias suggestions. Specifically, examine the class `ExternAliasCompletionProvider` or similar. The fix involves adding a check that the alias string is a valid C# identifier before suggesting it. Review existing tests for alias completion to understand the expected behavior. The change should be small and localized to the suggestion logic.