Raising events vs direct method calls differences
- by dotnetdev
Hi
Raising an event, will call its event handler. eg http://msdn.microsoft.com/en-us/library/aa645739%28VS.71%29.aspx
What is the difference between using the events mechanism and direct calls to other methods (eg if a condition is met in method A(), call B() )?
And what is the difference between consuming and raising events?
Thanks