Concatenation

Concatenation is adding together string values.

Java and it's relatives use the plus (+) sign.

For Visual Basic and it's relatives, use the ampersand (&) instead.

FullName = "Joe" & "Sweeney"
using two literals

FullName = "Joe" & LastName
using a literal and a variable

FullName = FirstName & LastName
using two variables