what's the difference between static event handler and non-static event handler

后端 未结 2 472
予麋鹿
予麋鹿 2021-02-05 22:07

Is there big difference between those two?

2条回答
  •  走了就别回头了
    2021-02-05 22:33

    Effectively none. All it means is that when the handler is static, there will be no this in scope (as with all static methods).

提交回复
热议问题