标签:select use and 输出 pac tps src 作用 www
学习记录
原文链接: https://www.cnblogs.com/cn-star/p/11872017.html
“@”符号有如下三种作用:
例如,有时我们保存一条文件路径时;路径中“\”需要写成“\\”;第一眼看去容易让人混淆。而通过字符串前加“@”符号,就可以直接输入路径,忽略转义。
string sPath = "D:\\192.168.12.34\\USER\\LOCAL.jpg"; string sPathV = @"D:\192.168.12.34\USER\LOCAL.jpg";
输出结果为:
未加“@”前:
string str = "select * from U_Wippackage_notice " + "where id=‘123456‘" + " and name=‘张三‘";
加了“@”后:
string str1 = @"select * from U_Wippackage_notice where id=‘123456‘ and name=‘李四‘";
标签:select use and 输出 pac tps src 作用 www
原文地址:https://www.cnblogs.com/susiesnai-sun/p/12814363.html