xxxxxxxxxx
string color = blue;
// Both versions do the same thing.
Console.WriteLine("The sky is " + color);
Console.WriteLine($"The sky is {color}");
//Note the dollar ^sign and ^curly^ brackets.
xxxxxxxxxx
string firstName = "John";
string lastName = "Doe";
string fullName = firstName + " " + lastName;
Console.WriteLine(fullName); // Output: John Doe
xxxxxxxxxx
string myString = "Hello, World!";
Console.WriteLine(myString); // Output: Hello, World!