Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 800 Bytes

RCS1248.md

File metadata and controls

33 lines (22 loc) · 800 Bytes

RCS1248: Normalize null check

Property Value
Id RCS1248
Severity None
Minimum language version 7.0 (9.0 for 'is not null' syntax)
Required option roslynator_null_check_style

Example

Code with Diagnostic

x == null

Code with Fix

x is null

Options

Use equality operator or pattern matchding as a null check

roslynator_null_check_style = equality_operator|pattern_matching

(Generated with DotMarkdown)