Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 514 Bytes

RCS1113.md

File metadata and controls

32 lines (22 loc) · 514 Bytes

RCS1113: Use 'string.IsNullOrEmpty' method

Property Value
Id RCS1113
Category Usage
Severity Info

Example

Code with Diagnostic

if (s == null || s.Length == 0) // RCS1113
{
}

Code with Fix

if (string.IsNullOrEmpty(s))
{
}

See Also

(Generated with DotMarkdown)