There are three ways of printing strings in C#:
Console.WriteLine("Hello " + world);
Console.WriteLine("Hello {0}", world);
Console.WriteLine($"Hello {world}, today is {date_time}");