我对 c# 有点陌生,我被困在这一点上,我有一个常规字符串,我使用了\
to escape "
,这里的 escape 意味着逃避编译器对 的解释"
,并"
打印在屏幕上,我得到预期的输出——>
class Program
{
static void Main(string[] args)
{
string s1 = "This is a \"regular\" string";
System.Console.WriteLine(s1);
System.Console.Read();
}
}
o/p--> 这是一个“常规”字符串
现在,我有一个逐字字符串,我正试图以与上述相同的方式逃避"
使用..->\
class Program
{
static void Main(string[] args)
{
string s2 = @"This is \t a \"verbatim\" string";//this would escape \t
System.Console.WriteLine(s2);
System.Console.Read();
}
}
为什么以上不起作用?