在C#中,有多种方法可以实现字符串拼接功能。以下是一些常见的方法:
string str1 = "Hello";
string str2 = "World";
string result = str1 + " " + str2;
Console.WriteLine(result); // 输出 "Hello World"
string str1 = "Hello";
string str2 = "World";
string result = $"{str1} {str2}";
Console.WriteLine(result); // 输出 "Hello World"
StringBuilder
类(适用于大量字符串拼接):using System.Text;
string str1 = "Hello";
string str2 = "World";
StringBuilder sb = new StringBuilder();
sb.Append(str1);
sb.Append(" ");
sb.Append(str2);
string result = sb.ToString();
Console.WriteLine(result); // 输出 "Hello World"
string.Join()
方法(适用于将字符串数组拼接成一个字符串):string[] words = { "Hello", "World" };
string result = string.Join(" ", words);
Console.WriteLine(result); // 输出 "Hello World"
以上是一些常见的字符串拼接方法,根据具体需求和场景选择合适的方法。