Why does it appear that my random number generator isn’t random in C#?

The problem with min = 0 and max = 1 is that min is inclusive and max is exclusive. So the only possible value for that combination is 0.

Leave a Comment