What\'s the difference between the two?
object.ProgressChanged += new EventHandler(object_ProgressChanged) object.ProgressCh
There is no difference between the two, they are same. In fact, the latter is just a shortcut and it will be compiled like the former.
Riana