StackOverflow 文档 C# Language 教程 字符串连接 操作者 操作者 Created: November-22, 2018 string s1 = "string1"; string s2 = "string2"; string s3 = s1 + s2; // "string1string2" 使用 System.Text.StringBuilder 连接字符串字符串连接