我想将字符串数组转换为单个字符串。
string[] test = new string[2]; test[0] = "Hello "; test[1] = "World!";
我想要像“Hello World!”这样的东西。
string[] test = new string[2]; test[0] = "Hello "; test[1] = "World!"; string.Join("", test);