The C# compiler translates += operator to the call of the static method Delegate.Combine.
There are several cases when the compiler does such things, f.e. the + operator of the System.String is compiled to the String.Concat call. Therefore there isn't op_Add method in System.String.