ukr:'Ukraine';rus:'Russia';fr:'France'
結果を受け取るために文字列を連結する最良の方法は何ですか?文字列を連結する最も効率的な方法は?
public class Country
{
public int IdCountry { get; set; }
public string Code { get; set; }
public string Title { get; set; }
}
var lst = new List<Country>();
lst.Add(new Country(){IdCountry = 1, Code = "ukr", Title = "Ukraine"});
lst.Add(new Country() { IdCountry = 2, Code = "rus", Title = "Russia" });
lst.Add(new Country() { IdCountry = 3, Code = "fr", Title = "France" });
string tst = ????
は本当に 'コードターゲットパターンです: 'タイトル';' 'コードが続く: 'タイトル'、'?最初のペアはセミコロンで終わり、2番目のペアはコンマで終わります。これは意図的ですか? – shanabus
の可能な複製[C#を使用した最高の文字列連結方法は何ですか?](http://stackoverflow.com/questions/21078/whats-the-best-string-concatenation-method-using-c) –
shanabus、パターンcorrecred、ありがとう – Yara