字符串连接: 字符串连接是将多个字符串拼接为一个字符串的过程。在C#中,可以使用"+"运算符或者字符串插值方式进行字符串连接。例如: string str1 = "Hello"; string str2 = "World"; string result1 = str1 +