Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 395 Bytes

RCS1192.md

File metadata and controls

23 lines (15 loc) · 395 Bytes

RCS1192: Unnecessary usage of verbatim string literal

Property Value
Id RCS1192
Severity Info

Example

Code with Diagnostic

string s = @"textWithoutEscapeSequence";

Code with Fix

string s = "textWithoutEscapeSequence";

(Generated with DotMarkdown)