We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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)