Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 482 Bytes

RCS1078.md

File metadata and controls

28 lines (18 loc) · 482 Bytes

RCS1078: Use "" instead of string.Empty

Property Value
Id RCS1078
Category General
Severity None

Example

Code with Diagnostic

string s = string.Empty; // RCS1078

Code with Fix

string s = "";

See Also

(Generated with DotMarkdown)