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
GetXAnalyzer.IsNullCheck doesn't recognize is not null.
GetXAnalyzer.IsNullCheck
is not null
The first code fragment raises REFL0009:
var property = type.GetProperty(PropertyName); if (suppressionsProperty is not null)
The second does not:
var property = type.GetProperty(PropertyName); if (suppressionsProperty != null)
The text was updated successfully, but these errors were encountered:
Thanks for the issue, the analyzer was written before not was a thing. We must add support
not
Sorry, something went wrong.
No branches or pull requests
GetXAnalyzer.IsNullCheck
doesn't recognizeis not null
.The first code fragment raises REFL0009:
The second does not:
The text was updated successfully, but these errors were encountered: