你还在使用sring.format()吗?试试$

string.format()的使用

通常,我们使用string.format()来格式化字符串,例如:

string name="薄心之心";
string friendname="Tom";
string result=string.format("my name is {0},{1} is my best friend.",name,friendname);

$的使用

上面的代码我们也可以使用$来完成:

string name="薄心之心";
string friendname="Tom";
string result=$"my name is {name},{friendname} is my best friend.";

运行代码,我们会发现两者结果是一样的。

此外,$方式{}中的变量也可以是表达式,如:

int count=10;
int price=20;
string result=$"my cost is {count*price}";

string.format()和$有什么区别和联系呢?

(1) string.format()和$的结果是一样的,$的出现就是为了替代string.format()。
(2)$符号是C#6.0之后才出现的新特性,在之前的版本是没有这个功能的。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值