Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 545 Bytes

RCS1192.md

File metadata and controls

28 lines (18 loc) · 545 Bytes

RCS1192: Unnecessary usage of verbatim string literal

Property Value
Id RCS1192
Category Readability
Severity Info

Example

Code with Diagnostic

string s = @"textWithoutEscapeSequence";

Code with Fix

string s = "textWithoutEscapeSequence";

See Also

(Generated with DotMarkdown)