C# event handling in a large application

  • Thread starter Thread starter Jonathan Rea
  • Start date Start date
J

Jonathan Rea

Hello,

Any help on the below would be much appreciated.

I have an application which is rapidly getting larger and is event driven. i
was wondering if anyone knew any good tutorials out there that describe
strategies for event structuring.

Thanks
Jon
 
I have an application which is rapidly getting larger and is event driven. i
was wondering if anyone knew any good tutorials out there that describe
strategies for event structuring.
The use of delegates to handle events bares close resemblence to the
"Publisher-Subscriber" design pattern. This pattern is considered best
practice for event driven systems. Study this pattern and delegates to
better understand how to develop event driven systems with .NET.

Anders Norås
http://dotnetjunkies.com/weblog/anoras/
 
Back
Top