Raw string literal in C# – (“””)
A raw string literal starts and ends with a minimum of three double quote (“) characters. this raw string literals were introduced in C# 11. A string literal is a sequence of characters enclosed in double quotes (“). To include a double quote character as part of the string, you can use an escape sequence, … Read more