在C#中,拼接字符串的方法有多种,其中最常用的方法是使用加号(+)或String.Concat方法。例如:
string str1 = "Hello";
string str2 = "World";
string result = str1 + " " + str2;
Console.WriteLine(result); // 输出:Hello World
string str1 = "Hello";
string str2 = "World";
string result = String.Concat(str1, " ", str2);
Console.WriteLine(result); // 输出:Hello World
另外,还可以使用StringBuilder类来拼接大量字符串,以提高性能。例如:
StringBuilder sb = new StringBuilder();
sb.Append("Hello");
sb.Append(" ");
sb.Append("World");
string result = sb.ToString();
Console.WriteLine(result); // 输出:Hello World
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c#中public的用法是什么