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
The rule SA1003 should validate spaces around the null-coalescing assignment operator (??=)
??=
The following code raise no warnings with stylecop 1.2.0-beta.556:
value??=string.Empty;
While the expected style like with any other operator should be:
value ??= string.Empty;
The text was updated successfully, but these errors were encountered:
I can fix this one
Sorry, something went wrong.
Update SA1003 to handle the null-coalescing assignment operator, the …
9a680bd
…unsigned right-shift operator, the unsigned right-shift assignment operator and the null-forgiving operator DotNetAnalyzers#3822
Successfully merging a pull request may close this issue.
The rule SA1003 should validate spaces around the null-coalescing assignment operator (
??=
)The following code raise no warnings with stylecop 1.2.0-beta.556:
While the expected style like with any other operator should be:
The text was updated successfully, but these errors were encountered: