Я знаю, что это сработает:
string multiline_text = @"this is a multiline text
this is line 1
this is line 2
this is line 3";
Как я могу выполнить следующую работу:
string a1 = " line number one";
string a2 = " line number two";
string a3 = " line number three";
string multiline_text = @"this is a multiline text
this is " + a1 + "
this is " + a2 + "
this is " + a3 + ";
Возможно ли без разделения строки на несколько подстрок, по одной для каждой строки?