This means that you want to add a value to an existing variable value. For example:
Dim x As Integer = 1
x += 2 ' x now equals 3
In other words, this would be the same as doing it:
Dim x As Integer = 1
x = x + 2 ' x now equals 3
In the future, you can see the full list of VB.NET statements on MSDN .
source
share