Why don't I see the += operator overloaded on System.Delegate?

前端 未结 4 1266
心在旅途
心在旅途 2021-01-12 19:03

I see the equality comparison operators == and != overloaded on System.Delegate and MulticastDelegate but not the +

4条回答
  •  既然无缘
    2021-01-12 19:09

    The += operator is inferred from the + operator.

    See += Operator (C# Reference)

提交回复
热议问题