Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 523 Bytes

RCS1143.md

File metadata and controls

28 lines (18 loc) · 523 Bytes

RCS1143: Simplify coalesce expression

Property Value
Id RCS1143
Category Simplification
Severity Hidden

Example

Code with Diagnostic

string s = default(string) ?? ""; // RCS1143

Code with Fix

string s = "";

See Also

(Generated with DotMarkdown)