1、用在表示路径的字符串前面
string filePath_error = "F:\t1\t2\t3.txt";//此时字符串中'\'会被当做转义字符处理,将不能正确表示路径
string filePath_Success = "F:\\t1\\t2\\t3.txt";//对'\'进行转义,此时可以正确表示为路径
string filePath_Success1 = @"F:\t1\t2\t3.txt";//@ 符号加在字符串前面表示其中的转义字符将“不”被处理,此时也可以正确表示路径
显然最后一种既正确,又方便
2、可以让字符串跨行
普通跨行
string str1 = "this is line 1"
+ "this is line 2"
+ "this is line 3";
@跨行,不需要字符串相加,可直接跨行,写SQL语句很方便
string str2 = @"this is line 1
this is line 2
this is line 3";
3、可以让关键字作为标识符(类名、变量名、方法名,命名空间等)class @class{
int @int;
bool @bool;
public static void @static(){
}
}