Patrick Smacchia shows off raw string literals:
C# 11 introduces Raw String Literals. Undoubtedly this feature will become very popular because it represents an elegant way to solve some issues with actual string literal.
Let’s have a look at such raw string literal with interpolation. Notice that a raw string literal necessarily starts and ends with at least 3x double quote characters
"""
.
This is similar to how several other languages, including F# and Python, do it.