小编典典

在C#中将列表转换为字符串

c#

如何在C#中将列表转换为字符串?

toStringList对象上执行时,我得到:

System.Collections.Generic.List`1 [System.String]


阅读 598

收藏
2020-05-19

共1个答案

小编典典

也许您正在尝试做

string combindedString = string.Join( ",", myList.ToArray() );

您可以将“,”替换为您要用来拆分列表中元素的内容。

编辑 :如评论中所述,您也可以

string combindedString = string.Join( ",", myList);

参考:

Join<T>(String, IEnumerable<T>) 
Concatenates the members of a collection, using the specified separator between each member.
2020-05-19