.net - Domain Event Design Pattern -


i've been reviewing example of domain event design blogged mike hadlow , created udi dahan.

currently publishing static events on our domain objects , subscribing them directly within our services, or via our plugin model (we locate , initialize our plugins @ runtime using structuremap).

what advantage of using udi's design?

it helps avoid memory leaks caused not deregistering event handlers when using c# built-in events.


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -