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