[Solved] C# Switch Randomized [closed]


I am not sure that I get it correctly, but you may try

Random rnd = new Random();
int caseSwitch = rnd.Next(1, 13);

2

solved C# Switch Randomized [closed]