using System;
#region Constant string interpolation
const string greeting = "Hello";
const string name = "World";
const string fullGreeting = $"{greeting}, {name}!";
Console.WriteLine(fullGreeting);
#endregion Constant string interpolation