小编典典

将字符串数组转换为字符串

all

我想将字符串数组转换为单个字符串。

string[] test = new string[2];
test[0] = "Hello ";
test[1] = "World!";

我想要像“Hello World!”这样的东西。


阅读 62

收藏
2022-07-02

共1个答案

小编典典

string[] test = new string[2];

test[0] = "Hello ";
test[1] = "World!";

string.Join("", test);
2022-07-02