File: consolekey.cs

package info (click to toggle)
mono 6.8.0.105%2Bdfsg-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,284,512 kB
  • sloc: cs: 11,172,132; xml: 2,850,069; ansic: 671,653; cpp: 122,091; perl: 59,366; javascript: 30,841; asm: 22,168; makefile: 20,093; sh: 15,020; python: 4,827; pascal: 925; sql: 859; sed: 16; php: 1
file content (209 lines) | stat: -rw-r--r-- 6,498 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
/*=============================================================================
**
** Class: ConsoleKey
**
**
** Purpose: This enumeration represents characters returned from a keyboard.
**          The list is derived from a list of Windows virtual key codes,
**          and is very similar to the Windows Forms Keys class.
**
**
=============================================================================*/

namespace System {

    [Serializable]
    public enum ConsoleKey
    {
        Backspace  = 0x8,
        Tab = 0x9,
        // 0xA,  // Reserved
        // 0xB,  // Reserved
        Clear = 0xC,
        Enter = 0xD,
        // 0E-0F,  // Undefined
        // SHIFT = 0x10,
        // CONTROL = 0x11,
        // Alt = 0x12,
        Pause = 0x13,
        // CAPSLOCK = 0x14,
        // Kana = 0x15,  // Ime Mode
        // Hangul = 0x15,  // Ime Mode
        // 0x16,  // Undefined
        // Junja = 0x17,  // Ime Mode
        // Final = 0x18,  // Ime Mode
        // Hanja = 0x19,  // Ime Mode
        // Kanji = 0x19,  // Ime Mode
        // 0x1A,  // Undefined
        Escape = 0x1B,
        // Convert = 0x1C,  // Ime Mode
        // NonConvert = 0x1D,  // Ime Mode
        // Accept = 0x1E,  // Ime Mode
        // ModeChange = 0x1F,  // Ime Mode
        Spacebar = 0x20,
        PageUp = 0x21,
        PageDown = 0x22,
        End = 0x23,
        Home = 0x24,
        LeftArrow = 0x25,
        UpArrow = 0x26,
        RightArrow = 0x27,
        DownArrow = 0x28,
        Select = 0x29,
        Print = 0x2A,
        Execute = 0x2B,
        PrintScreen = 0x2C,
        Insert = 0x2D,
        Delete = 0x2E,
        Help = 0x2F,
        D0 = 0x30,  // 0 through 9
        D1 = 0x31,
        D2 = 0x32,
        D3 = 0x33,
        D4 = 0x34,
        D5 = 0x35,
        D6 = 0x36,
        D7 = 0x37,
        D8 = 0x38,
        D9 = 0x39,
        // 3A-40 ,  // Undefined
        A = 0x41,
        B = 0x42,
        C = 0x43,
        D = 0x44,
        E = 0x45,
        F = 0x46,
        G = 0x47,
        H = 0x48,
        I = 0x49,
        J = 0x4A,
        K = 0x4B,
        L = 0x4C,
        M = 0x4D,
        N = 0x4E,
        O = 0x4F,
        P = 0x50,
        Q = 0x51,
        R = 0x52,
        S = 0x53,
        T = 0x54,
        U = 0x55,
        V = 0x56,
        W = 0x57,
        X = 0x58,
        Y = 0x59,
        Z = 0x5A,
        LeftWindows = 0x5B,  // Microsoft Natural keyboard
        RightWindows = 0x5C,  // Microsoft Natural keyboard
        Applications = 0x5D,  // Microsoft Natural keyboard
        // 5E ,  // Reserved
        Sleep = 0x5F,  // Computer Sleep Key
        NumPad0 = 0x60,
        NumPad1 = 0x61,
        NumPad2 = 0x62,
        NumPad3 = 0x63,
        NumPad4 = 0x64,
        NumPad5 = 0x65,
        NumPad6 = 0x66,
        NumPad7 = 0x67,
        NumPad8 = 0x68,
        NumPad9 = 0x69,
        Multiply = 0x6A,
        Add = 0x6B,
        Separator = 0x6C,
        Subtract = 0x6D,
        Decimal = 0x6E,
        Divide = 0x6F,
        F1 = 0x70,
        F2 = 0x71,
        F3 = 0x72,
        F4 = 0x73,
        F5 = 0x74,
        F6 = 0x75,
        F7 = 0x76,
        F8 = 0x77,
        F9 = 0x78,
        F10 = 0x79,
        F11 = 0x7A,
        F12 = 0x7B,
        F13 = 0x7C,
        F14 = 0x7D,
        F15 = 0x7E,
        F16 = 0x7F,
        F17 = 0x80,
        F18 = 0x81,
        F19 = 0x82,
        F20 = 0x83,
        F21 = 0x84,
        F22 = 0x85,
        F23 = 0x86,
        F24 = 0x87,
        // 88-8F,  // Undefined
        // NumberLock = 0x90,
        // ScrollLock = 0x91,
        // 0x92,  // OEM Specific
        // 97-9F ,  // Undefined
        // LeftShift = 0xA0,
        // RightShift = 0xA1,
        // LeftControl = 0xA2,
        // RightControl = 0xA3,
        // LeftAlt = 0xA4,
        // RightAlt = 0xA5,
        BrowserBack = 0xA6,  // Windows 2000/XP
        BrowserForward = 0xA7,  // Windows 2000/XP
        BrowserRefresh = 0xA8,  // Windows 2000/XP
        BrowserStop = 0xA9,  // Windows 2000/XP
        BrowserSearch = 0xAA,  // Windows 2000/XP
        BrowserFavorites = 0xAB,  // Windows 2000/XP
        BrowserHome = 0xAC,  // Windows 2000/XP
        VolumeMute = 0xAD,  // Windows 2000/XP
        VolumeDown = 0xAE,  // Windows 2000/XP
        VolumeUp = 0xAF,  // Windows 2000/XP
        MediaNext = 0xB0,  // Windows 2000/XP
        MediaPrevious = 0xB1,  // Windows 2000/XP
        MediaStop = 0xB2,  // Windows 2000/XP
        MediaPlay = 0xB3,  // Windows 2000/XP
        LaunchMail = 0xB4,  // Windows 2000/XP
        LaunchMediaSelect = 0xB5,  // Windows 2000/XP
        LaunchApp1 = 0xB6,  // Windows 2000/XP
        LaunchApp2 = 0xB7,  // Windows 2000/XP
        // B8-B9,  // Reserved
        Oem1 = 0xBA,  // Misc characters, varies by keyboard. For US standard, ;:
        OemPlus = 0xBB,  // Misc characters, varies by keyboard. For US standard, +
        OemComma = 0xBC,  // Misc characters, varies by keyboard. For US standard, ,
        OemMinus = 0xBD,  // Misc characters, varies by keyboard. For US standard, -
        OemPeriod = 0xBE,  // Misc characters, varies by keyboard. For US standard, .
        Oem2 = 0xBF,  // Misc characters, varies by keyboard. For US standard, /?
        Oem3 = 0xC0,  // Misc characters, varies by keyboard. For US standard, `~
        // 0xC1,  // Reserved
        // D8-DA,  // Unassigned
        Oem4 = 0xDB,  // Misc characters, varies by keyboard. For US standard, [{
        Oem5 = 0xDC,  // Misc characters, varies by keyboard. For US standard, \|
        Oem6 = 0xDD,  // Misc characters, varies by keyboard. For US standard, ]}
        Oem7 = 0xDE,  // Misc characters, varies by keyboard. For US standard,
        Oem8 = 0xDF,  // Used for miscellaneous characters; it can vary by keyboard
        // 0xE0,  // Reserved
        // 0xE1,  // OEM specific
        Oem102 = 0xE2,  // Win2K/XP: Either angle or backslash on RT 102-key keyboard
        // 0xE3,  // OEM specific
        Process = 0xE5,  // Windows: IME Process Key
        // 0xE6,  // OEM specific
        Packet = 0xE7,  // Win2K/XP: Used to pass Unicode chars as if keystrokes
        // 0xE8,  // Unassigned
        // 0xE9,  // OEM specific
        Attention = 0xF6,
        CrSel = 0xF7,
        ExSel = 0xF8,
        EraseEndOfFile = 0xF9,
        Play = 0xFA,
        Zoom = 0xFB,
        NoName = 0xFC,  // Reserved
        Pa1 = 0xFD,
        OemClear = 0xFE,
    }
}