Is Random.GetItems the best way to get random items in C# 12?
One of the most common operations when dealing with collections of items is to retrieve a subset of these elements taken randomly.
Before .NET 8, the most common way to retrieve random items was to order the collection using a random value and then t...
code4it.hashnode.dev8 min read