类型将字符串转换为多行版本
Type converting a string to a multiline version
我有
string subquery="cmd cmd";
我需要
string query = @"asd
asd asd
asd asd
"+ MakeMultiline(subquery) + @"asd asd asd
asd asd where id=@id";
可以不改变子查询字符串的声明吗?
我需要这个,因为当我尝试时它会给出未完成的字符串文字错误。
使用Environment.NewLine或使用\n\r\n.
示例:
string query = "asd \n asd asd \n asd asd"+ MakeMultiline(subquery) +
"asd asd asd \n asd asd where id=@id";
不要使用@来使用逐字字符串,除非你想定义两次转义序列。
我有
string subquery="cmd cmd";
我需要
string query = @"asd
asd asd
asd asd
"+ MakeMultiline(subquery) + @"asd asd asd
asd asd where id=@id";
可以不改变子查询字符串的声明吗?
我需要这个,因为当我尝试时它会给出未完成的字符串文字错误。
使用Environment.NewLine或使用\n\r\n.
示例:
string query = "asd \n asd asd \n asd asd"+ MakeMultiline(subquery) +
"asd asd asd \n asd asd where id=@id";
不要使用@来使用逐字字符串,除非你想定义两次转义序列。