C#中内插字符串的使用($)

内插字符串

内插字符串是C# 6.0中引入的新的语法,它允许在字符串中插入表达式。相比string.Format(),它不需要格式字符串中的序号与params数组中的位置对应,可读性高,便于阅读。
内插字符串以$开头,它可以直接在括号中编写C# 表达式。内插字符串内可以继续插入字符串。

代码示例

class Program
{
    static void Main(string[] args)
    {
        var name = "world";
        string str = string.Format("hello {0}", name);
        string str1 = $"hello {name}";
        Console.WriteLine("str:{0}\nstr1:{1}",str,str1);
        Console.WriteLine($"The value of pi is {Math.PI}");
        Console.ReadKey();
    }
}

参考资料

1、Effective C#,改善C#代码的五十个有效方法
2、https://www.cnblogs.com/csproj/p/Interpolated_Strings.html

你可能感兴趣的:(C#,字符串,内插字符串,$,C#)