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)
Before
Section titled “Before”var json = "{\"name\":\"Ada\"}";var json = """{ "name": "Ada"}""";Gotchas & Best Practices
Section titled “Gotchas & Best Practices”- Use more quotes when content includes quotes.