C#转义字符
c#里 @ 表示的是:
1、在C#中,"c:\\temp"表示路径是c:\temp; 而@"c:\temp"就表示c:\temp;
所以,@的作用就应该是忽略转义字符的作用.
2、如果字符串中有",则写成"";如:
string [email protected]"{ name:""name"" }";
3、在string.format 方法中{,则写成{{
时间: 2024-10-07 22:15:33
c#里 @ 表示的是:
1、在C#中,"c:\\temp"表示路径是c:\temp; 而@"c:\temp"就表示c:\temp;
所以,@的作用就应该是忽略转义字符的作用.
2、如果字符串中有",则写成"";如:
string [email protected]"{ name:""name"" }";
3、在string.format 方法中{,则写成{{