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
That started off wrong. There could be no event handler. Or many. You don’t know. Which is the major difference from calling a method directly. Look up “observer pattern” in your favorite design patterns book.