In VB.NET, is there any advantage to using & to concatenate strings instead of +?
For example
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.
 
     
     
     
     
     
     
    