I have some code that contains the operator \'+=\'.
Specifically, the code reads as follows:
foreach (KeyValuePair row in connecti
It adds two strings(or ints etc) together.
String a = "Hello"; a += " World";
String a now = "Hello World"
"Hello World"
int i = 0; i += 2;
int I now = 2
2