I have some code that contains the operator '+='.
Specifically, the code reads as follows:
foreach (KeyValuePair<String, String> row in connectionOpts)
{
str += String.Format("{0}={1}; ", row.Key, row.Value);
}
What function does this operator perform?