Archives for C# 4.0
The Publish Subscribe Pattern in C# and some gotchas
This post does three things: Provides a complete implementation of the publish subscribe pattern in C#. Highlights 4 potential issues that are inherent to ANY publish subscribe implementation – including…
New interfaces for implementing Publish-Subscribe in .NET
You know you are a techie at heart if you find yourself getting excited at the introduction of a couple of new interfaces. .NET introduces IObservable (Publisher) and IObserver (Subscriber).…