Hello I'm new on this forum and also on C#, and I have a question I want to retrieve the values of every variable from a loop, something like this:

Code:
            sbyte A = -115, B = -44, C = 97, D = 112;
            byte E = 224;
            short F = -10000, G = 1990, H = 20000;
            ushort I = 52130;
            int J = 4825932;
            uint K = 970700000;
            long L = -1000000, M = 123456789123456789;

            for (char c = 'A'; c <= 'Z'; c++)
            {
                Console.Write(c);
                Console.ReadKey();
            }
How can I get this working?
Thank you!