Reading the documentation I can see that + operator can be used to compose/combine delegates of the same type.
+
In the same way I can see that I can remo
The delegate operators (+ and -) are shorthand for the static methods. There is no difference at all.
-
a += b compiles to a = (Action)Delegate.Combine(a, b)
a += b
a = (Action)Delegate.Combine(a, b)