C# 字符串前加$
2021-02-04 06:16
阅读:665
标签:ring span world pre hello col form orm 字符串 (完) C# 字符串前加$ 标签:ring span world pre hello col form orm 字符串 原文地址:https://www.cnblogs.com/lishidefengchen/p/11473905.html
string s = "hello";
string fo = $"{s} world";
// 等同于使用Format方法:
string fo = string.Format("{0} world",s);
上一篇:WPF Xaml中创建集合
下一篇:C#:随笔
评论
亲,登录后才可以留言!