Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 913 Bytes

RCS1248.md

File metadata and controls

37 lines (24 loc) · 913 Bytes

RCS1248: Use pattern matching to check for null (or vice versa)

Property Value
Id RCS1248
Category Style
Severity None
Minimal Language Version 7.0 (9.0 for 'is not null' syntax)

Example

Code with Diagnostic

x == null

Code with Fix

x is null

Options

Use comparison instead of pattern matching to check for null

roslynator.RCS1248.invert = true

See Also

(Generated with DotMarkdown)