A New Way to Randomize in .NET 8
We've all used random numbers in C# for various reasons. It has never been difficult to get a random number and use it, we've all probably written something like this:
public int GetRandomNumber(int max)
{
var random = new Random();
return ra...
ryanphillips.hashnode.dev2 min read