What does the %= operator do? [duplicate]
From MSDN: The % operator computes the remainder after dividing its first operand by its second. All numeric types have predefined remainder operators. So in your case, the following string is the same as this one: Which also applies to all operators: a += b equals to a = a + ba /= b equals to a = a / … Read more