Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 380 Bytes

RCS1084.md

File metadata and controls

23 lines (15 loc) · 380 Bytes

RCS1084: Use coalesce expression instead of conditional expression

Property Value
Id RCS1084
Severity Info

Example

Code with Diagnostic

string x = (s != null) ? s : "";

Code with Fix

string x = s ?? "";

(Generated with DotMarkdown)