Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 380 Bytes

RCS1156.md

File metadata and controls

27 lines (19 loc) · 380 Bytes

RCS1156: Use string.Length instead of comparison with empty string

Property Value
Id RCS1156
Severity Info

Example

Code with Diagnostic

if (s == "") // RCS1156
{
}

Code with Fix

if (s?.Length == 0)
{
}

(Generated with DotMarkdown)