码迷,mamicode.com
首页 > Windows程序 > 详细

C# 字符串前加$

时间:2019-09-06 12:34:53      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:ring   span   world   pre   hello   col   form   orm   字符串   

string s = "hello";
string fo = $"{s} world";

// 等同于使用Format方法:
string fo = string.Format("{0} world",s);

(完)

C# 字符串前加$

标签:ring   span   world   pre   hello   col   form   orm   字符串   

原文地址:https://www.cnblogs.com/lishidefengchen/p/11473905.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!