12 references to ConsoleKey
mscorlib (12)
system\console.cs (9)
1533ConsoleKey key = (ConsoleKey) keyCode; 1534if (IsAltKeyDown(ir) && ((key >= ConsoleKey.NumPad0 && key <= ConsoleKey.NumPad9) 1535|| (key == ConsoleKey.Clear) || (key == ConsoleKey.Insert) 1536|| (key >= ConsoleKey.PageUp && key <= ConsoleKey.DownArrow))) { 1554ConsoleKeyInfo info = new ConsoleKeyInfo((char)ir.keyEvent.uChar, (ConsoleKey) ir.keyEvent.virtualKeyCode, shift, alt, control);
system\consolekeyinfo.cs (3)
22private ConsoleKey _key; 25public ConsoleKeyInfo(char keyChar, ConsoleKey key, bool shift, bool alt, bool control) { 49public ConsoleKey Key {