📌  相关文章
📜  c# @ 在字符串之前 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:24.085000             🧑  作者: Mango

代码示例1
//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