如图,想请教为什么string.join(),不能把字符串连接起来,在控制台只有一个world输出
试试
string a = "hello"; string b = "world"; string c = string.Join(" ", a, b); Console.WriteLine(c);