C# 中 @ 开头的字符串称作什么?

比如:

string sql = @"select *
               from table1";

这叫“逐字字符串”,关于其用法,请参见 C# string 中的 @。

你可能感兴趣的