字串文字

string 文字是通過用雙引號 " 包裝值來定義的:

string s = "hello, this is a string literal";

字串文字可能包含轉義序列。請參見字串轉義序列

另外,C#支援逐字字串文字(參見 Verbatim 字串 )。這些是通過用雙引號 " 包裝值並在 @ 前面加上來定義的。在逐字字串文字中忽略轉義序列,幷包括所有空格字元:

string s = @"The path is:
C:\Windows\System32";
//The backslashes and newline are included in the string