Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 525 Bytes

RCS1192.md

File metadata and controls

28 lines (18 loc) · 525 Bytes

RCS1192: Use regular string literal instead of verbatim string literal

Property Value
Id RCS1192
Category Readability
Severity Info

Example

Code with Diagnostic

string s = @"x"; // RCS1192

Code with Fix

string s = "x";

See Also

(Generated with DotMarkdown)