Більше

Малі літери і їх коди

for (int c = 'a'; c <= 'z'; c++)

{

     Console.WriteLine((char)c + " - " + c);

}

Усі коди

Повертати курсор в лівий верхній кут консолі

int i = 0;

while (true)

{

     Console.CursorTop = 0;

     Console.CursorLeft = 0;

     Console.WriteLine(i);

     i++;

}

Поставити курсор на позицію

Console.SetCursorPosition(1, 1);

Console.WriteLine("*");