Is there a difference between the following 2 lines of code?
Code:
m_ctrPanel.Leave += this.OnLeave;
and
Code:
m_ctrPanel.Leave += new System.EventHandler(this.OnLeave);
Obviously, they serve the same purpose – add event handler.

Any insight or reference is really appreciated!

Cheers,
- Nick