在C#中将列表转换为字符串
如何在C#中将列表转换为字符串?
在toString
List对象上执行时,我得到:
System.Collections.Generic.List`1 [System.String]
回答:
也许您正在尝试做
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.
以上是 在C#中将列表转换为字符串 的全部内容, 来源链接: utcz.com/qa/416519.html