Six helpful extension methods I use to work with Collections

from blog Just Some Code, | ↗ original
This post is part of my Advent of Code 2022. LINQ is the perfect way to work with collections. It’s declarative and immutable. But, from time to time, I take some extension methods with me to the projects I work with. These are some extension methods to work with collections. 1. Check if a collection is null or empty These are three methods to...