For what it's worth starting an string in C# with @
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
What's the @ in front of a string for .NET?
when to use @ in c#?
我是C编程的新手,在许多例子中,特别是在msdn,下面的代码片段经常出现:
string newstring=@"你好,世界";
我很好奇这段代码中使用的@信号有什么影响…有什么不同于
string newstring="你好,世界";