C# Tip: Use a SortedSet to avoid duplicates and sort items
As you probably know, you can create collections of items without duplicates by using a HashSet<T> object.
It is quite useful to remove duplicates from a list of items of the same type.
How can we ensure that we always have sorted items? The answer ...
code4it.hashnode.dev3 min read