C#中的以下语句
string xmlSample = ""
实际上会存储该值
而
string xmlSample = @"";
有价值的
对于第二种情况,您需要用空字符串替换斜杠(),如下所示
string test = xmlSample.Replace(@"\", string.Empty);
结果将是
PS
slash(\)是C#中的默认转义字符
\
要忽略斜杠,请在字符串的开头使用@
如果使用@,转义字符是双引号(")