random-generator

Letter generator

I have a problem finding a good algorithm for generating a random letter. I tried with this: public static char GetLetter() { int num = random.Next(0, 26); char letter = (char)('a' + num); return letter; } which I found on the internet, but it generates same letter, or max two of them. For example, if ...