Possible duplicate:
Difference between + and and for joining strings in VB.NET
In VB.NET, you can use either +=or &=to concatenate a string (ignoring the use of StringBuilder for this question - this aims at a very simple concatenation).
What are the differences (if any) to using one or the other in VB.NET?
rickp source
share