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
Move misplaced using directives
Compiler: 4.13.0-2.24561.3 (24e1dd6) .NET: 9.0.100 Visual Studio Code: 1.95.3, f1a4fb101478ce6ec82fe9627c43efbf9e98c813, x64 C# Extension: v2.56.31 C# Dev Kit Extension: v1.14.2
f1a4fb101478ce6ec82fe9627c43efbf9e98c813
namespace Foo; using Alias = C; class C;
Alias
Diagnostic ID: IDE0065
IDE0065
using Alias = Foo.C; namespace Foo; class C;
using Alias = C; // The type or namespace name 'C' could not be found namespace Foo; class C;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version Used
Compiler: 4.13.0-2.24561.3 (24e1dd6)
.NET: 9.0.100
Visual Studio Code: 1.95.3,
f1a4fb101478ce6ec82fe9627c43efbf9e98c813
, x64C# Extension: v2.56.31
C# Dev Kit Extension: v1.14.2
Steps to Reproduce
Move misplaced using directives
fix onAlias
.Diagnostic ID:
IDE0065
Expected Behavior
Actual Behavior
The text was updated successfully, but these errors were encountered: