首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何添加{in String Format c#

在C#中,要将一个字符串添加到另一个字符串中,可以使用字符串的连接操作符"+"或者使用字符串的拼接方法Concat()。

使用连接操作符"+":

代码语言:csharp
复制
string str1 = "Hello";
string str2 = "World";
string result = str1 + " " + str2;
Console.WriteLine(result);  // 输出:Hello World

使用Concat()方法:

代码语言:csharp
复制
string str1 = "Hello";
string str2 = "World";
string result = string.Concat(str1, " ", str2);
Console.WriteLine(result);  // 输出:Hello World

另外,如果要在字符串中插入其他变量的值,可以使用字符串插值(String Interpolation)或者使用格式化字符串(Formatted String)。

使用字符串插值:

代码语言:csharp
复制
string name = "Alice";
int age = 25;
string message = $"My name is {name} and I'm {age} years old.";
Console.WriteLine(message);  // 输出:My name is Alice and I'm 25 years old.

使用格式化字符串:

代码语言:csharp
复制
string name = "Alice";
int age = 25;
string message = string.Format("My name is {0} and I'm {1} years old.", name, age);
Console.WriteLine(message);  // 输出:My name is Alice and I'm 25 years old.

以上是在C#中添加字符串的常见方法,根据具体的需求选择适合的方法即可。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券