リストをカンマで区切って文字列に変換します
List
list.Add("a");
list.Add("b");
list.Add (" c");
//MessageBox.Show(list.);
//LoadModel();
string s = string.Join(",", list.ToArray());
MessageBox.Show(s) ;
List
list.Add(new test("1", "a"));
list.Add(new test("2", " b" ));
list.Add(new test("", ""));
list.Add(new test("3", "c"));
var a = リストの o から test1 を選択します。
var b = リストの o から o.test2 を選択;
string s1 = string.Join(",", a.ToArray());
string s2 = string.Join(",", b.ToArray(); 「,」ではなく、「,」の後にスペースが続きます
List
{
MessageBox.Show("*" + t + "*");}
ここでの s の区切り文字は "," です
string s = "1,2,3";
Listforeach (リスト内の文字列 t)
{
MessageBox.Show( "*" + t + "*");
}