标签: c# stringbuilder
你能告诉我一个从字符串数组创建字符串的简单方法吗?
我有:
String line = "how are you"; string[] split = line.Split(new Char[] { ' ' }); //{"how", "are", "you"}
我怎样才能回归"字符串 - 你好吗"?这只是示例,而不是现实:-)谢谢。
答案 0 :(得分:11)
使用此:
string.Join(" ", split);