Console.ReadKey
Vár egy billentyűleütést. FIXME
PÉLDÁK
Várakozás billentyű leütésére
using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Nyomj meg egy tetszőleges billentyűt");
Console.ReadKey(true);
}
}
Egy karakter beolvasása
using System;
class Program
{
public static void Main(string[] args)
{
char ch;
ch = Console.ReadKey(true).KeyChar;
Console.Write("A leütött billentyű: ");
Console.WriteLine(ch);
}
}