@ 和 禁止转义字符串

string str = "";

\r 表示转义字符,如果字符串真的要输入\,需要\表示非转义,如果要输入 \r,应当输入 \\r。
"也需要转义, ""

@ 禁止\转义,但是双引号仍旧需要保持转义

""" """最强大