In VB.Net, is there any advantage to using &
to concatenate strings instead of +
? e.g.
Dim x as String = "hello" + " there"
vs.
Dim x as String = "hello" & " there"
Yes, I know for a lot of string concatenations I'd want to use StringBuilder
, but this is more of a general question.