我如何在c#中转换一个列表到字符串?
当我在List对象上执行toString时,我得到:
System.Collections.Generic.List`1[System.String]
我如何在c#中转换一个列表到字符串?
当我在List对象上执行toString时,我得到:
System.Collections.Generic.List`1[System.String]
当前回答
我将跟随我的直觉,并假设您想要连接在列表的每个元素上调用ToString的结果。
var result = string.Join(",", list.ToArray());
其他回答
如果你想要一些比简单的连接稍微复杂一点的东西,你可以使用LINQ。
var result = myList.Aggregate((total, part) => total + "(" + part.ToLower() + ")");
将采用["A", "B", "C"]并产生"(A)(B)(C)"
我将跟随我的直觉,并假设您想要连接在列表的每个元素上调用ToString的结果。
var result = string.Join(",", list.ToArray());
你的问题的直接答案是字符串。像其他人提到的那样加入。
然而,如果你需要一些操作,你可以使用Aggregate:
List<string> employees = new List<string>();
employees.Add("e1");
employees.Add("e2");
employees.Add("e3");
string employeesString = "'" + employees.Aggregate((x, y) => x + "','" + y) + "'";
Console.WriteLine(employeesString);
Console.ReadLine();
你可以用绳子。加入:
List<string> list = new List<string>()
{
"Red",
"Blue",
"Green"
};
string output = string.Join(Environment.NewLine, list.ToArray());
Console.Write(output);
结果将是:
Red
Blue
Green
作为环境的替代方案。NewLine,您可以用您选择的基于字符串的行分隔符替换它。
这很难说,但也许你想要的是:
var myString = String.Join(String.Empty, myList.ToArray());
这将隐式地对列表中的每个项调用ToString()方法并将它们连接起来。