Skip to content

C# Feature โ€“ Raw string literals

Raw strings use three or more quotes to avoid escape sequences and preserve whitespace.

C# 11 (2022)

var json = "{\"name\":\"Ada\"}";
var json = """
{
"name": "Ada"
}
""";
  • Use more quotes when content includes quotes.