CRARCH0008 Use is null checks
- Category: Architecture
- Default severity: Warning
- Diagnostic ID:
CRARCH0008
What it checks
Section titled “What it checks”Pattern matching null checks are the preferred and consistent style.
Diagnostic message
Section titled “Diagnostic message”Use 'is null'/'is not null' instead of '== null'/'!= null'
How to resolve
Section titled “How to resolve”Rewrite null checks to use is null and is not null.