📅  最后修改于: 2022-03-11 14:49:24.085000             🧑  作者: Mango
//You might have seed @ before strings like this
string str = @"\";
//It stops the string from escaping the \ character
str = "\n";
//str is NewLine character
str = @"\n";
//str is \n