Ecco un semplice metodo per stampare a video tutte le lettere dell'alfabeto:

public static void GetAlphabetLetters()

{
char a = Char.Parse("A");
char z = Char.Parse("Z");
for (char i = a; i <= z; i++)
{
Console.WriteLine(i.ToString());
}
}
Commenti(0) - Posted @ 12/21/2006 10:33:47 AM - Categoria: Useful methods - Permalink - Share on twitter | facebook


COMMENTI
Non sono stati aggiungi commenti ...

INSERISCI UN COMMENTO

Nome *
Indirizzo e-mail
(non verrà pubblicato)
Commento *