标签: c#
我想问一下是否可以将列表项更改为一个字符串吗?
List<string> example = new List<string>(); example.Add("1"); example.Add("2"); example.Add("3"); string text = "123";
答案 0 :(得分:4)
string.Join适合您
string s = string.Join("", example )