If you've spent any time working with event-driven code, you've probably used the Observer pattern without even realizing it had a name.
It's one of those foundational design patterns that shows up everywhere once you know what to look for — and once you understand it, keeping multiple parts of your application in sync stops feeling like a juggling act.
At a high level, the Observer pattern is about loose coupling: letting one object announce "hey, something changed" without needing to know or care who's listening. Let's break down how it works and walk through building one in C#.
What Exactly Is the Observer Pattern?
The pattern boils down to two roles: a subject and one or more observers. Whenever the subject's state changes, it automatically notifies every observer that's currently paying attention.
A good real-world analogy is subscribing to a YouTube channel.
You don't have to keep refreshing the page to check for new uploads — the moment the creator posts something, every subscriber gets pinged.
That's the Observer pattern in action, just outside the context of code.
In C#, you'll run into this pattern constantly in event-driven scenarios — GUI updates, data-binding, situations where one object's change needs to ripple out to several others without those others being tightly wired together.
The Three Moving Parts
Every implementation of the Observer pattern generally breaks down into:
- The Subject — the thing being watched. It keeps a list of its observers and is responsible for notifying them when something changes.
- The Observer Interface — a contract that defines how observers get notified (typically a single method, like
Update). - Concrete Observers — the actual classes that implement that interface and decide what to do when they're notified.
Let's put this into actual code.
Building It Step by Step
1. Define the Observer Interface
public interface IObserver
{
void Update(string message);
}
This is about as simple as it gets — any class that wants to "listen" just needs to implement Update. That single method is the entire contract between the subject and its observers.
2. Build the Subject
public class Subject
{
private List<IObserver> observers = new List<IObserver>();
public void Attach(IObserver observer)
{
observers.Add(observer);
}
public void Detach(IObserver observer)
{
observers.Remove(observer);
}
public void Notify(string message)
{
foreach (var observer in observers)
{
observer.Update(message);
}
}
}
Nothing fancy here — Attach adds an observer to the list, Detach removes one, and Notify loops through everyone currently subscribed and calls their Update method. This is really the engine of the whole pattern.
3. Create a Concrete Observer
public class ConcreteObserver : IObserver
{
private string _name;
public ConcreteObserver(string name)
{
_name = name;
}
public void Update(string message)
{
Console.WriteLine($"Observer {_name} received message: {message}");
}
}
This observer just prints out whatever message it receives, tagged with its own name — enough to demonstrate that each observer is getting notified independently.
4. Wire It All Together
class Program
{
static void Main(string[] args)
{
Subject subject = new Subject();
var observer1 = new ConcreteObserver("A");
var observer2 = new ConcreteObserver("B");
subject.Attach(observer1);
subject.Attach(observer2);
subject.Notify("Hello, Observers!");
subject.Detach(observer1);
subject.Notify("Update after detaching Observer A");
}
}
Run this and you'll see both observers get the first message, but only Observer B gets the second one — since we detached Observer A in between. This is exactly the kind of dynamic subscribe/unsubscribe behavior that makes the pattern so useful in real applications.
5. The C# Shortcut: Using Built-In Events
Writing your own Subject/Observer plumbing is a great way to learn the pattern, but honestly, C# already gives you a cleaner way to do the same thing with its native event system:
public class SubjectWithEvent
{
public event Action<string>? OnNotify;
public void Notify(string message)
{
OnNotify?.Invoke(message);
}
}
class ProgramWithEvents
{
static void Main()
{
var subject = new SubjectWithEvent();
subject.OnNotify += (message) => Console.WriteLine($"Observer 1 received message: {message}");
subject.OnNotify += (message) => Console.WriteLine($"Observer 2 received message: {message}");
subject.Notify("Event-driven Notification!");
}
}
Instead of manually managing a list of observers, you're just subscribing lambda expressions (or method references) directly to an event delegate.
Less boilerplate, same underlying idea — the event keyword is essentially doing the Attach/Notify work for you behind the scenes.
Why Bother With This Pattern?
The biggest win is loose coupling.
Your subject doesn't need to know anything about the internal details of its observers — it just needs to know they exist and how to notify them.
That separation makes your code a lot easier to extend, test, and debug down the line, since you can add or remove observers without touching the subject's logic at all.
And in C# specifically, the built-in event system means you get most of this benefit without writing much of the scaffolding yourself.