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
To simplify namespace usage as the following (let's call it namespace declaration),
namespace package1 { // some classes for package-1 } namespace package2 { // some other classes for package-2 }
to
namespace package1; // some classes for package-1 namespace package2; // some other classes for package-2
Comments: Inspired by using declaration in C# 8.0, the proposed change saves the top level indent and a pair of braces.
The text was updated successfully, but these errors were encountered:
Duplicate of #2546, #137
Sorry, something went wrong.
Yes, please!
Should be awesome in a combine with #3117
Closing as a duplicate of #137.
No branches or pull requests
To simplify namespace usage as the following (let's call it namespace declaration),
to
Comments:
Inspired by using declaration in C# 8.0, the proposed change saves the top level indent and a pair of braces.
The text was updated successfully, but these errors were encountered: