Se ho capito bene:

codice:
for (int c = 48; (c <= 57); c++)
            {
                Console.WriteLine(((char)(c)));
            }
            for (int c = 65; (c <= 90); c++)
            {
                Console.WriteLine(((char)(c)));
            }