码迷,mamicode.com
首页 > Windows程序 > 详细

C#中的@符号

时间:2019-08-23 22:14:12      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:last   man   bsp   使用   contact   file   resource   str   inner   

1.限定字符串

用 @ 符号加在字符串前面表示其中的转义字符“不”被处理。

string fileName = "D://文本文件//text.txt";

string fileName = @"D:/文本文件/text.txt";

2.让字符串跨行

比如SQL语句,不使用@符号时:

string strSQL = "SELECT * FROM HumanResources.Employee AS e"    + " INNER JOIN Person.Contact AS c"    + " ON e.ContactID = c.ContactID"    + " ORDER BY c.LastName";

加上@符号后就可以直接换行了:

string strSQL = @"SELECT * FROM HumanResources.Employee AS e    INNER JOIN Person.Contact AS c    ON e.ContactID = c.ContactID    ORDER BY c.LastName";

C#中的@符号

标签:last   man   bsp   使用   contact   file   resource   str   inner   

原文地址:https://www.cnblogs.com/xixixing/p/11402701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!