2021-08-16 VB.net Listに格納されている文字列をカンマ区切りで連結 Dim list As New ArrayList list.Add("A") list.Add("B") String.join(",",list.ToArray()); ネタ元 ameblo.jp