C#提供了两种方式定义多行字符串变量
string couplet1 = "Half a league, half a league,\n"
                + "Half a league onward,";
 
string couplet2 = @"All in the valley of Death
Rode the six hundred.";
C#提供了两种方式定义多行字符串变量
string couplet1 = "Half a league, half a league,\n"
                + "Half a league onward,";
 
string couplet2 = @"All in the valley of Death
Rode the six hundred.";