■ C# 10.0 での新機能
・定数の補間文字列 (Constant interpolated strings)
https://docs.microsoft.com/ja-jp/dotnet/csharp/language-reference/tokens/interpolated#structure-of-an-interpolated-string
const string
の定義で値に文字列補間が使えるようになった。
public class C { const string S1 = $"Hello world"; const string S2 = $"Hello{" "}World"; const string S3 = $"{S1} Kevin, welcome to the team!"; }