Code inspection: Escape sequence can be simplifiedLast modified: 08 August 2024 Category: Potential Code Quality Issues ID: CanSimplifyStringEscapeSequence EditorConfig: resharper_can_simplify_string_escape_sequence_highlighting=[error|warning|suggestion|hint|none] Default severity: Hint Language: 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}");