C# Feature โ Raw string literals
Overview
Section titled โOverviewโRaw strings use three or more quotes to avoid escape sequences and preserve whitespace.
Introduced In
Section titled โIntroduced InโC# 11 (2022)
var json = "{\"name\":\"Ada\"}";
var json = """{ "name": "Ada"}""";
Gotchas & Best Practices
Section titled โGotchas & Best Practicesโ- Use more quotes when content includes quotes.