This is how to concatenate

Concatenating means to put two words together, it works like this:.

Open visual studio and start a Console Application (don't forget to name it), next enter the following line of code:

String strFName = "(enter your first name)";

String strLName = "(enter your last name)";

Console.WriteLine(String.Concat(strFName, " ", strLName));

This will produce your first and last name put together.