public static void Main()
{
do
{
ConsoleKeyInfo Key;
Key = Console.ReadKey();
Console.WriteLine(Key.KeyChar);
}
while (true);
}
上面是键盘输入什么就在屏幕写什么
但是怎样 上下左右 键出现不了,用什么方法可以解决????