轉義字串文字中的特殊符號
反斜槓
// The filename will be c:\myfile.txt in both cases
string filename = "c:\\myfile.txt";
string filename = @"c:\myfile.txt";
第二個示例使用逐字字串文字 ,它不將反斜槓視為轉義字元。
引號
string text = "\"Hello World!\", said the quick brown fox.";
string verbatimText = @"""Hello World!"", said the quick brown fox.";
兩個變數都包含相同的文字。
Hello World!
,快速的棕色狐狸說。
換行
逐字字串文字可以包含換行符:
string text = "Hello\r\nWorld!";
string verbatimText = @"Hello
World!";
兩個變數都包含相同的文字。