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.