Strings can be added together using the "+" sign. This operation is called string concatenation or concatenation.
For example,
string s = "Hi,";
string s1 = "world";
Console.WriteLine(s + s1);
The screen will display the phrase "
Hello world" (without quotes).