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
e.g. methods like
public override async Task Method1() {...} async public override Task Method1() {...}
are equivalent
It'd be nice to have first visibility and last async, or whatever, but consistent.
This is similar to sort usings maybe and that discussion might apply here too.
using
The text was updated successfully, but these errors were encountered:
Can I add one more to this topic? The new required keyword of C# 11 is being put before the property access modifier.
required
So, for example, instead of having:
public required string Name { get; init; }
we have:
required public string Name { get; init; }
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
e.g. methods like
are equivalent
It'd be nice to have first visibility and last async, or whatever, but consistent.
This is similar to sort
using
s maybe and that discussion might apply here too.The text was updated successfully, but these errors were encountered: