Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 711 Bytes

RCS1078.md

File metadata and controls

31 lines (21 loc) · 711 Bytes

RCS1078: Use "" instead of string.Empty

Property Value
Id RCS1078
Category General
Default Severity Info
Enabled by Default -
Supports Fade-Out
Supports Fade-Out Analyzer -

Example

Code with Diagnostic

string s = string.Empty; // RCS1078

Code with Fix

string s = "";

See Also

(Generated with DotMarkdown)