Console.Write("请按下一个按键:");
ConsoleKey consoleKey = Console.ReadKey().Key;
Console.WriteLine("\n你按下的键是{0}", consoleKey.ToString());
输出:
请按下一个按键:i
你按下的键是I
ConsoleKey
是一个枚举,直接ToString()
转化成的是对应的大写字母。
2021-11-17 13:18:54
Console.Write("请按下一个按键:");
ConsoleKey consoleKey = Console.ReadKey().Key;
Console.WriteLine("\n你按下的键是{0}", consoleKey.ToString());
输出:
请按下一个按键:i
你按下的键是I
ConsoleKey
是一个枚举,直接ToString()
转化成的是对应的大写字母。
下一篇:c# 后台发送post请求