C# 字符串前加$

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

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

(完)

posted @ 2019-09-06 11:42  lishidefengchen  阅读(3764)  评论(0编辑  收藏  举报