We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version Used: VSCode 1.80.0-insider, C# extension v2.0.246-gc81fc4a054
Steps to Reproduce:
global using static List
List<T>
System.Collections.Generic
Expected Behavior:
global using static System.Collections.Generic.List is inserted.
global using static System.Collections.Generic.List
Actual Behavior:
The text was updated successfully, but these errors were encountered:
FYI @genlu.
Sorry, something went wrong.
The regular using version is slightly better:
Still not correct code (no regular using should be inserted, as it needs to be fully qualified there), but at least it's not syntactically garbled.
genlu
Successfully merging a pull request may close this issue.
Version Used: VSCode 1.80.0-insider, C# extension v2.0.246-gc81fc4a054
Steps to Reproduce:
global using static List
List<T>
fromSystem.Collections.Generic
Expected Behavior:
global using static System.Collections.Generic.List
is inserted.Actual Behavior:
The text was updated successfully, but these errors were encountered: