C
C
\"转义“符号
\\\" 转义后\”
\\n转义后\n
OK
two \\ represents one slash if you want to print in your window.
Console.WriteLine("\n1\n2\t3");
Console.WriteLine("1\n2\t3");
Console.WriteLine("1\n\t2\n3");
Console.WriteLine("1\t2\n3\n");
1.3、6对
2.\n换行
\t水平制表符,空两格
\\代表一个\
第3个正确
3.
\n=换行
\t=转义字符
ctrl+k+c=注释
ctrl+k+n=取消注释
1.f
2.f
3.t
4.f
5.f
6t
3
c
3 6 3
、、代表转义
第一个、把后面的、给转义
180987456123
ctrl k+ctrl c注释
ctrl k +ctrl u取消注释
\n 换行 \t table键
\\:\字符 \":"字符
3、6
Console.WriteLine("")
\"
"\\"会输出得到"\"
Console.WriteLine("\"");输出"
Console.WriteLine("\\");\
Console.WriteLine("\\\"");\"
转义字符
\t (占位符/制表符) \n(换行)
显示斜杠引号的方法:
转义字符+斜杠/引号:\\ 和\"
转意字符://出现一个斜杠