What happens when you concatenate two strings?
A third string object is created containing the concatenated strings.
The second string object is modified so it contains the concatenated strings.
You cannot concatenate strings in .NET.
The first string object is modified so it contains the concatenated strings.