Is there a difference between the following 2 lines of code?
andCode:m_ctrPanel.Leave += this.OnLeave;
Obviously, they serve the same purpose – add event handler.Code:m_ctrPanel.Leave += new System.EventHandler(this.OnLeave);
Any insight or reference is really appreciated!
Cheers,
- Nick




Reply With Quote
