Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- string output = "";
- for (char c = 'a'; c <= 'z'; c++)
- {
- output += Char.ToString(c) + ", " + Char.ToUpper(c) + ", ";
- }
- Debug.Print("Alphabet: " + output);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement