6 references to Escape
System.Console (6)
System\IO\KeyParser.cs (6)
31
if (length >= MinimalSequenceLength + 1 && buffer[startIndex] ==
Escape
&& buffer[startIndex + 1] ==
Escape
)
45
if (length == 2 && buffer[startIndex] ==
Escape
&& buffer[startIndex + 1] !=
Escape
)
60
if (input.Length < MinimalSequenceLength || input[0] !=
Escape
|| (input[1] != '[' && input[1] != 'O'))
324
Escape
=> ConsoleKey.Escape, // Ctrl+[ and Ctrl+3 are also mapped to 27. Limitation: Ctrl+[ and Ctrl+3 can't be mapped.