占位符

作者: IT_IOS_MAN | 来源:发表于2020-02-02 13:59 被阅读0次

    常规 不建议

    string name = "张三";
    string message = "Hello" + name;
    

    优化后

    string name = "张三";
    string message = string.Format("Hello {0}", name);
    

    在升级

    string name = "张三";
    string message = $"Hello {name}";
    

    相关文章

      网友评论

          本文标题:占位符

          本文链接:https://www.haomeiwen.com/subject/jkhqxhtx.html