Code inspection: Escape sequence can be simplifiedLast modified: 08 August 2024Category: Potential Code Quality IssuesID: CanSimplifyStringEscapeSequenceEditorConfig: resharper_can_simplify_string_escape_sequence_highlighting=[error|warning|suggestion|hint|none]Default severity: HintLanguage: C#Requires SWA: NotipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.This inspection reports usages of character codes in string literals and suggests replacing them with corresponding escape sequences to make the literals more readable.Suboptimal codeConsole.WriteLine("Hello world! \x000D}");After the quick-fixConsole.WriteLine("Hello world! \r}");