c#程式設計之@的3種作用
阿新 • • 發佈:2018-12-15
對@ 的作用不是很清晰,學習了一下,站在巨人的肩膀上總結如下:
1.忽略轉義字元
例如
string fileName = "D:\\文字檔案\\text.txt";
使用@後
string fileName = @"D:\文字檔案\text.txt";
2.讓字串跨行
例如
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";
3.在識別符號中的用法
C#是不允許關鍵字作為識別符號(類名、變數名、方法名、表空間名等)使用的,但如果加上@之後就可以了
例如
public static void @static(int @int) { if (@int > 0) { System.Console.WriteLine("Positive Integer"); } else if (@int == 0) { System.Console.WriteLine("Zero"); } else { System.Console.WriteLine("Negative Integer"); } }