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