Skip to content

CRARCH0008 Use is null checks

  • Category: Architecture
  • Default severity: Warning
  • Diagnostic ID: CRARCH0008

Pattern matching null checks are the preferred and consistent style.

Use 'is null'/'is not null' instead of '== null'/'!= null'

Rewrite null checks to use is null and is not null.