I want to be able to get single characters from the console without having to press the enter key.
For example, when I press the letter "e", I want to immediately use that value without the user having to press the enter key
>Solution :
Try:
var key = System.Console.ReadKey(intercept: true);
The intercept flag prevents the pressed key from being rendered into the terminal.