C# Tip: ObservableCollection - a data type to intercept changes to the collection
Imagine you need a way to raise events whenever an item is added or removed from a collection.
Instead of building a new class from scratch, you can use ObservableCollection<T> to store items, raise events, and act when the internal state of the coll...
code4it.hashnode.dev6 min read