Ampersand vs plus for concatenating strings in VB.NET [duplicate]

Microsoft’s preference is for VB programmers to use & for strings and not +.

You can also use the + operator to concatenate strings. However, to eliminate ambiguity, you should use the & operator instead.

Leave a Comment