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

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

(完)

相关文章:

  • 2022-02-27
  • 2021-06-15
  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-29
  • 2021-05-17
  • 2021-06-10
  • 2022-12-23
  • 2021-12-26
相关资源
相似解决方案