csharp C#中的插值字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp C#中的插值字符串相关的知识,希望对你有一定的参考价值。

string firstName = "Jase",
       interpolatedGreeting = $"Hello, { firstName }.";

Console.WriteLine(interpolatedGreeting);

// Output:
// Hello, Jase.

以上是关于csharp C#中的插值字符串的主要内容,如果未能解决你的问题,请参考以下文章

C#6 中的长字符串插值线

csharp 线性插值

对 C# 6.0 中的字符串插值感到困惑 [重复]

csharp 使用sha256加密c#中的字符串

C# 10 新特性 —— 插值字符串优化

c#-string 插值